Skip to content

Commit fce83d6

Browse files
committed
Revert "[browser][MT] troubleshooting deadlocks (dotnet#104539)"
This reverts commit 844e6fe.
1 parent d69b0e8 commit fce83d6

File tree

5 files changed

+0
-9
lines changed

5 files changed

+0
-9
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,6 @@ 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)]
299298
public static void CancellationTokenRegitration()
300299
{
301300
ManualResetEvent mre = new ManualResetEvent(false);
@@ -313,7 +312,6 @@ public static void CancellationTokenRegitration()
313312
/// verify that the taskawaiter.UnsafeOnCompleted is invoked
314313
/// </summary>
315314
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
316-
[ActiveIssue("https://github.com/dotnet/runtime/issues/99500", TestPlatforms.Browser)]
317315
public static void TaskAwaiter()
318316
{
319317
ManualResetEvent mre = new ManualResetEvent(false);

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ 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)]
7473
public static void AsyncEnumerableWithDelays()
7574
{
7675
var source = new InstrumentedAsyncEnumerable<int>(CreateSourceEnumerable());
@@ -105,7 +104,6 @@ static async IAsyncEnumerable<int> CreateSourceEnumerable()
105104
}
106105

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

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

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,6 @@ 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)]
10801079
public static void TestNoDeadlockOnContinueWith()
10811080
{
10821081
Debug.WriteLine("TestNoDeadlockOnContinueWith: shouldn't deadlock if it passes.");
@@ -1256,7 +1255,6 @@ public static void LongContinuationChain_Unwrap_DoesNotStackOverflow()
12561255
}
12571256

12581257
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
1259-
[ActiveIssue("https://github.com/dotnet/runtime/issues/99519", TestPlatforms.Browser)]
12601258
public static void LongContinuationChain_Await_DoesNotStackOverflow()
12611259
{
12621260
const int DiveDepth = 12_000;

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,6 @@ 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)]
665664
public void NamedMutex_ThreadExitDisposeRaceTest()
666665
{
667666
var mutexName = Guid.NewGuid().ToString("N");

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ 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)]
9493
public static void RunSemaphoreSlimTest1_WaitAsync_NegativeCases()
9594
{
9695
// Invalid timeout

0 commit comments

Comments
 (0)