Skip to content

Disable some named synchronization object tests on Windows Server Core #113482

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

Merged
merged 1 commit into from
Mar 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public void NamePrefixAndOptionsCompatibilityTest(bool currentUserOnly, bool cur
}
}

[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] // Windows Nano Server apparently uses the same namespace for the Local\ and Global\ prefixes
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))] // Windows Nano Server and Server Core apparently use the same namespace for the Local\ and Global\ prefixes
[MemberData(nameof(MutexTests.NameNamespaceTests_MemberData), MemberType = typeof(MutexTests))]
[PlatformSpecific(TestPlatforms.Windows)] // names aren't supported on Unix
public void NameNamespaceTest(
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/System.Threading/tests/MutexTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ public static IEnumerable<object[]> NameNamespaceTests_MemberData()
}
}

[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] // Windows Nano Server apparently uses the same namespace for the Local\ and Global\ prefixes
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))] // Windows Nano Server and Server Core apparently use the same namespace for the Local\ and Global\ prefixes
[MemberData(nameof(NameNamespaceTests_MemberData))]
public void NameNamespaceTest(
bool create_currentUserOnly,
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/System.Threading/tests/SemaphoreTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ public void NamePrefixAndOptionsCompatibilityTest(bool currentUserOnly, bool cur
}
}

[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] // Windows Nano Server apparently uses the same namespace for the Local\ and Global\ prefixes
[ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoNorServerCore))] // Windows Nano Server and Server Core apparently use the same namespace for the Local\ and Global\ prefixes
[MemberData(nameof(MutexTests.NameNamespaceTests_MemberData), MemberType = typeof(MutexTests))]
[PlatformSpecific(TestPlatforms.Windows)] // names aren't supported on Unix
public void NameNamespaceTest(
Expand Down
Loading