@@ -254,7 +254,7 @@ public void Ctor_InvalidNames_Unix()
254
254
255
255
[ Theory ]
256
256
[ MemberData ( nameof ( GetValidNames ) ) ]
257
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
257
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
258
258
public void Ctor_ValidName ( string name )
259
259
{
260
260
bool createdNew ;
@@ -336,7 +336,7 @@ public void Ctor_TryCreateGlobalMutexTest_Uwp(bool currentUserOnly, bool current
336
336
337
337
[ ConditionalTheory ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsThreadingSupported ) ) ]
338
338
[ MemberData ( nameof ( GetValidNames ) ) ]
339
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
339
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
340
340
public void OpenExisting ( string name )
341
341
{
342
342
Mutex resultHandle ;
@@ -369,7 +369,7 @@ public void OpenExisting_InvalidNames()
369
369
}
370
370
371
371
[ Fact ]
372
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
372
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
373
373
public void OpenExisting_UnavailableName ( )
374
374
{
375
375
string name = Guid . NewGuid ( ) . ToString ( "N" ) ;
@@ -406,7 +406,7 @@ public void NamedWaitHandleOptionsTest()
406
406
407
407
[ Theory ]
408
408
[ MemberData ( nameof ( NamePrefixes_MemberData ) ) ]
409
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
409
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
410
410
public void NameOptionsApiCompatibilityTest ( string namePrefix )
411
411
{
412
412
string name = Guid . NewGuid ( ) . ToString ( "N" ) ;
@@ -468,7 +468,7 @@ public static IEnumerable<object[]> NamePrefixAndOptionsCompatibilityTest_Member
468
468
469
469
[ Theory ]
470
470
[ MemberData ( nameof ( NamePrefixAndOptionsCompatibilityTest_MemberData ) ) ]
471
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
471
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
472
472
public void NamePrefixAndOptionsCompatibilityTest ( bool currentUserOnly , bool currentSessionOnly , string namePrefix )
473
473
{
474
474
string name = namePrefix + Guid . NewGuid ( ) . ToString ( "N" ) ;
@@ -500,7 +500,7 @@ public static IEnumerable<object[]> NameNamespaceTests_MemberData()
500
500
501
501
[ ConditionalTheory ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsNotWindowsNanoNorServerCore ) ) ] // Windows Nano Server and Server Core apparently use the same namespace for the Local\ and Global\ prefixes
502
502
[ MemberData ( nameof ( NameNamespaceTests_MemberData ) ) ]
503
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
503
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
504
504
public void NameNamespaceTest (
505
505
bool create_currentUserOnly ,
506
506
bool create_currentSessionOnly ,
@@ -615,7 +615,7 @@ public static IEnumerable<object[]> AbandonExisting_MemberData()
615
615
616
616
[ ConditionalTheory ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsThreadingSupported ) ) ]
617
617
[ MemberData ( nameof ( AbandonExisting_MemberData ) ) ]
618
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
618
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
619
619
public void AbandonExisting (
620
620
string name ,
621
621
WaitHandleWaitType waitType ,
@@ -871,7 +871,7 @@ private static void IncrementValueInFileNTimes(Mutex mutex, string fileName, int
871
871
872
872
[ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsThreadingSupported ) ) ]
873
873
[ ActiveIssue ( "https://github.com/dotnet/runtime/issues/96191" , TestPlatforms . Browser ) ]
874
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
874
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
875
875
public void NamedMutex_ThreadExitDisposeRaceTest ( )
876
876
{
877
877
var mutexName = Guid . NewGuid ( ) . ToString ( "N" ) ;
@@ -933,7 +933,7 @@ public void NamedMutex_ThreadExitDisposeRaceTest()
933
933
}
934
934
935
935
[ ConditionalFact ( typeof ( PlatformDetection ) , nameof ( PlatformDetection . IsThreadingSupported ) ) ]
936
- [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/114951 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
936
+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/117760 " , platforms : TestPlatforms . Android , runtimes : TestRuntimes . CoreCLR ) ]
937
937
public void NamedMutex_DisposeWhenLockedRaceTest ( )
938
938
{
939
939
var mutexName = Guid . NewGuid ( ) . ToString ( "N" ) ;
0 commit comments