Skip to content

Commit 2471117

Browse files
authored
Update ActiveIssue references for Android in MutexTests (dotnet#118343)
1 parent 0549417 commit 2471117

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ public void Ctor_InvalidNames_Unix()
254254

255255
[Theory]
256256
[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)]
258258
public void Ctor_ValidName(string name)
259259
{
260260
bool createdNew;
@@ -336,7 +336,7 @@ public void Ctor_TryCreateGlobalMutexTest_Uwp(bool currentUserOnly, bool current
336336

337337
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
338338
[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)]
340340
public void OpenExisting(string name)
341341
{
342342
Mutex resultHandle;
@@ -369,7 +369,7 @@ public void OpenExisting_InvalidNames()
369369
}
370370

371371
[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)]
373373
public void OpenExisting_UnavailableName()
374374
{
375375
string name = Guid.NewGuid().ToString("N");
@@ -406,7 +406,7 @@ public void NamedWaitHandleOptionsTest()
406406

407407
[Theory]
408408
[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)]
410410
public void NameOptionsApiCompatibilityTest(string namePrefix)
411411
{
412412
string name = Guid.NewGuid().ToString("N");
@@ -468,7 +468,7 @@ public static IEnumerable<object[]> NamePrefixAndOptionsCompatibilityTest_Member
468468

469469
[Theory]
470470
[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)]
472472
public void NamePrefixAndOptionsCompatibilityTest(bool currentUserOnly, bool currentSessionOnly, string namePrefix)
473473
{
474474
string name = namePrefix + Guid.NewGuid().ToString("N");
@@ -500,7 +500,7 @@ public static IEnumerable<object[]> NameNamespaceTests_MemberData()
500500

501501
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))] // Windows Nano Server and Server Core apparently use the same namespace for the Local\ and Global\ prefixes
502502
[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)]
504504
public void NameNamespaceTest(
505505
bool create_currentUserOnly,
506506
bool create_currentSessionOnly,
@@ -615,7 +615,7 @@ public static IEnumerable<object[]> AbandonExisting_MemberData()
615615

616616
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
617617
[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)]
619619
public void AbandonExisting(
620620
string name,
621621
WaitHandleWaitType waitType,
@@ -871,7 +871,7 @@ private static void IncrementValueInFileNTimes(Mutex mutex, string fileName, int
871871

872872
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsThreadingSupported))]
873873
[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)]
875875
public void NamedMutex_ThreadExitDisposeRaceTest()
876876
{
877877
var mutexName = Guid.NewGuid().ToString("N");
@@ -933,7 +933,7 @@ public void NamedMutex_ThreadExitDisposeRaceTest()
933933
}
934934

935935
[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)]
937937
public void NamedMutex_DisposeWhenLockedRaceTest()
938938
{
939939
var mutexName = Guid.NewGuid().ToString("N");

src/libraries/tests.proj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@
225225
</ItemGroup>
226226

227227
<ItemGroup Condition="'$(TargetOS)' == 'android' and '$(RuntimeFlavor)' == 'CoreCLR' and '$(RunDisabledAndroidTests)' != 'true'">
228-
<!-- https://github.com/dotnet/runtime/issues/114951 -->
229228
<!-- https://github.com/dotnet/runtime/issues/62547 -->
230229
<ProjectExclusions Include="$(MSBuildThisFileDirectory)System.Security.Cryptography\tests\System.Security.Cryptography.Tests.csproj" />
231230
<!-- https://github.com/dotnet/runtime/issues/72908 -->

0 commit comments

Comments
 (0)