Skip to content
Closed

CI Test #96289

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 @@ -108,17 +108,16 @@ public static bool IsPrivilegedProcess

// 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
public static int SlowRuntimeTimeoutModifier = GetSlowRuntimeTimeoutModifier();

private static int GetSlowRuntimeTimeoutModifier()
{
get
{
if (IsReleaseRuntime)
return 1;
if (IsRiscV64Process)
return IsDebugRuntime? 10 : 2;
else
return IsDebugRuntime? 5 : 1;
}
if (IsReleaseRuntime)
return 1;
if (IsRiscV64Process)
return IsDebugRuntime? 10 : 2;
else
return IsDebugRuntime? 5 : 1;
}

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