-
Notifications
You must be signed in to change notification settings - Fork 5.3k
[mono] Review [SkipOnTargetFramework(TargetFrameworkMonikers.Mono...] occurrences #31920
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,6 @@ namespace System.Threading.Tests | |
| public static class SynchronizationContextTests | ||
| { | ||
| [Fact] | ||
| [SkipOnTargetFramework(TargetFrameworkMonikers.Mono, "SynchronizationContext.Wait(IntPtr[], bool, int) is not implemented on Mono")] | ||
| public static void WaitTest() | ||
| { | ||
| var tsc = new TestSynchronizationContext(); | ||
|
|
@@ -37,14 +36,13 @@ public static void WaitTest() | |
| } | ||
|
|
||
| [Fact] | ||
| [SkipOnTargetFramework(TargetFrameworkMonikers.Mono)] | ||
| public static void WaitTest_ChangedInDotNetCore() | ||
| { | ||
| Assert.Throws<ArgumentNullException>(() => TestSynchronizationContext.WaitHelper(null, false, 0)); | ||
| } | ||
|
|
||
| [Fact] | ||
| [SkipOnTargetFramework(TargetFrameworkMonikers.Mono, "https://bugzilla.xamarin.com/show_bug.cgi?id=60568")] | ||
| [ActiveIssue("https://github.com/dotnet/runtime/issues/31977", TargetFrameworkMonikers.Mono)] | ||
| public static void WaitNotificationTest() | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like this test still fails. The bugzilla bug was marked as fixed so probably some other issue. Can you please add a new issue for this and disable the test with
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I'll do |
||
| { | ||
| ThreadTestHelpers.RunTestInBackgroundThread(() => | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.