Skip to content

Commit c00ae6b

Browse files
committed
rebase, use active issues
1 parent 5b5d791 commit c00ae6b

File tree

5 files changed

+9
-0
lines changed

5 files changed

+9
-0
lines changed

src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/MethodCoverage.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ public static async Task Task_WhenAny_TwoTasks_WakesOnFirstCompletion()
295295
}
296296

297297
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
298+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99500", TestPlatforms.Browser)]
298299
public static void CancellationTokenRegitration()
299300
{
300301
ManualResetEvent mre = new ManualResetEvent(false);
@@ -312,6 +313,7 @@ public static void CancellationTokenRegitration()
312313
/// verify that the taskawaiter.UnsafeOnCompleted is invoked
313314
/// </summary>
314315
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
316+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99500", TestPlatforms.Browser)]
315317
public static void TaskAwaiter()
316318
{
317319
ManualResetEvent mre = new ManualResetEvent(false);

src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/Task/AsyncEnumerableToBlockingEnumerableTests.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ static async IAsyncEnumerable<int> CreateSourceEnumerable()
7070
}
7171

7272
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
73+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
7374
public static void AsyncEnumerableWithDelays()
7475
{
7576
var source = new InstrumentedAsyncEnumerable<int>(CreateSourceEnumerable());
@@ -104,6 +105,7 @@ static async IAsyncEnumerable<int> CreateSourceEnumerable()
104105
}
105106

106107
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
108+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
107109
public static void AsyncEnumerableWithException()
108110
{
109111
var source = new InstrumentedAsyncEnumerable<int>(CreateSourceEnumerable());
@@ -132,6 +134,7 @@ static async IAsyncEnumerable<int> CreateSourceEnumerable()
132134
}
133135

134136
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
137+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
135138
public static void AsyncEnumerableWithCancellation()
136139
{
137140
var source = new InstrumentedAsyncEnumerable<string>(CreateSourceEnumerable());

src/libraries/System.Runtime/tests/System.Threading.Tasks.Tests/Task/TaskContinueWithTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,7 @@ public static void RunContinuationCancelTest_State()
10761076
}
10771077

10781078
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
1079+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
10791080
public static void TestNoDeadlockOnContinueWith()
10801081
{
10811082
Debug.WriteLine("TestNoDeadlockOnContinueWith: shouldn't deadlock if it passes.");
@@ -1255,6 +1256,7 @@ public static void LongContinuationChain_Unwrap_DoesNotStackOverflow()
12551256
}
12561257

12571258
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
1259+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
12581260
public static void LongContinuationChain_Await_DoesNotStackOverflow()
12591261
{
12601262
const int DiveDepth = 12_000;

src/libraries/System.Threading/tests/MutexTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,7 @@ private static void IncrementValueInFileNTimes(Mutex mutex, string fileName, int
661661
}
662662

663663
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
664+
[ActiveIssue("https://github.com/dotnet/runtime/issues/96191", TestPlatforms.Browser)]
664665
public void NamedMutex_ThreadExitDisposeRaceTest()
665666
{
666667
var mutexName = Guid.NewGuid().ToString("N");

src/libraries/System.Threading/tests/SemaphoreSlimTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public static void RunSemaphoreSlimTest1_WaitAsync()
9090
}
9191

9292
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
93+
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
9394
public static void RunSemaphoreSlimTest1_WaitAsync_NegativeCases()
9495
{
9596
// Invalid timeout

0 commit comments

Comments
 (0)