From c4c0fb1a39f47339a6da145f44e2f35374811bdc Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Thu, 8 Jun 2023 20:30:29 -0700 Subject: [PATCH] Disable Quic_IsSupportedTests against ActiveIssue Related #87275 --- .../tests/FunctionalTests/MsQuicPlatformDetectionTests.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicPlatformDetectionTests.cs b/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicPlatformDetectionTests.cs index 61b40e8cce83cb..f53a00e838df13 100644 --- a/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicPlatformDetectionTests.cs +++ b/src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicPlatformDetectionTests.cs @@ -32,6 +32,7 @@ public void SupportedWindowsPlatforms_IsSupportedIsTrue() [Fact] [PlatformSpecific(TestPlatforms.Linux)] + [ActiveIssue("https://github.com/dotnet/runtime/issues/87275", typeof(PlatformDetection), nameof(PlatformDetection.IsDebian))] public async Task SupportedLinuxPlatformsWithMsQuic_IsSupportedIsTrue() { using Process find = new Process(); @@ -57,6 +58,7 @@ public async Task SupportedLinuxPlatformsWithMsQuic_IsSupportedIsTrue() [ActiveIssue("https://github.com/dotnet/runtime/issues/82154", typeof(PlatformDetection), nameof(PlatformDetection.IsRaspbian10), nameof(PlatformDetection.IsArmv6Process), nameof(PlatformDetection.IsInContainer))] [ActiveIssue("https://github.com/dotnet/runtime/issues/82154", typeof(PlatformDetection), nameof(PlatformDetection.IsUbuntu2004), nameof(PlatformDetection.IsPpc64leProcess))] [ActiveIssue("https://github.com/dotnet/runtime/issues/82154", typeof(PlatformDetection), nameof(PlatformDetection.IsUbuntu2004), nameof(PlatformDetection.IsS390xProcess))] + [ActiveIssue("https://github.com/dotnet/runtime/issues/87275", typeof(PlatformDetection), nameof(PlatformDetection.IsDebian))] [ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsInHelix))] [PlatformSpecific(TestPlatforms.Linux)] public void SupportedLinuxPlatforms_IsSupportedIsTrue()