Skip to content

Commit b412fff

Browse files
authored
[QUIC] Delete ActiveIssues on SupportedLinuxPlatforms_IsSupportedIsTrue test (#115141)
* Raspbian 10 removed from CI * Update PlatformDetection.Unix.cs
1 parent 1b19fe3 commit b412fff

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/libraries/Common/tests/TestUtilities/System/PlatformDetection.Unix.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public static partial class PlatformDetection
1818
public static bool IsLinux => RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
1919
public static bool IsOpenSUSE => IsDistroAndVersion("opensuse");
2020
public static bool IsUbuntu => IsDistroAndVersion("ubuntu");
21-
public static bool IsUbuntu2004 => IsDistroAndVersion("ubuntu", 20, 4);
2221
public static bool IsUbuntu24 => IsDistroAndVersion("ubuntu", 24);
2322
public static bool IsUbuntu24OrHigher => IsDistroAndVersionOrHigher("ubuntu", 24);
2423
public static bool IsDebian => IsDistroAndVersion("debian");

src/libraries/System.Net.Quic/tests/FunctionalTests/MsQuicPlatformDetectionTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ public async Task SupportedLinuxPlatformsWithMsQuic_IsSupportedIsTrue()
5757
}
5858
}
5959

60-
[ActiveIssue("https://github.com/dotnet/runtime/issues/82154", typeof(PlatformDetection), nameof(PlatformDetection.IsPpc64leProcess))]
61-
[ActiveIssue("https://github.com/dotnet/runtime/issues/82154", typeof(PlatformDetection), nameof(PlatformDetection.IsUbuntu2004), nameof(PlatformDetection.IsS390xProcess))]
6260
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsInHelix))]
6361
[PlatformSpecific(TestPlatforms.Linux)]
6462
public void SupportedLinuxPlatforms_IsSupportedIsTrue()

0 commit comments

Comments
 (0)