Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,20 @@ public static bool IsPrivilegedProcess
public static bool IsReleaseLibrary(Assembly assembly) => !IsDebuggable(assembly);
public static bool IsDebugLibrary(Assembly assembly) => IsDebuggable(assembly);

// For use as needed on tests that time out when run on a Debug runtime.
// For use as needed on tests that time out when run on a Debug or Checked runtime.
// Not relevant for timeouts on external activities, such as network timeouts.
public static int SlowRuntimeTimeoutModifier = (PlatformDetection.IsDebugRuntime ? 5 : 1);
public static int SlowRuntimeTimeoutModifier
{
get
{
if (IsReleaseRuntime)
return 1;
if (IsRiscV64Process)
return IsDebugRuntime? 10 : 2;
else
return IsDebugRuntime? 5 : 1;
}
}

public static bool IsCaseInsensitiveOS => IsWindows || IsOSX || IsMacCatalyst;
public static bool IsCaseSensitiveOS => !IsCaseInsensitiveOS;
Expand Down