Skip to content

[RISC-V] Fix ProcessWaitingTests.WaitChain and ProcessWaitingTests.Wa… #96187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 21, 2023
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