Skip to content

Commit

Permalink
Run unconditional msquic Linux test only in our CI, i.e. Helix (#82108)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManickaP committed Feb 15, 2023
1 parent 53bb518 commit c53d17c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void SupportedWindowsPlatforms_IsSupportedIsTrue()

[ActiveIssue("https://github.com/dotnet/runtime/issues/81901", typeof(PlatformDetection), nameof(PlatformDetection.IsAlpine314), nameof(PlatformDetection.IsInContainer))]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
public async Task SupportedLinuxPlatformsWithMsquic_IsSupportedIsTrue()
public async Task SupportedLinuxPlatformsWithMsQuic_IsSupportedIsTrue()
{
using Process find = new Process();
find.StartInfo.FileName = "find";
Expand All @@ -57,7 +57,7 @@ public async Task SupportedLinuxPlatformsWithMsquic_IsSupportedIsTrue()
[ActiveIssue("https://github.com/dotnet/runtime/issues/81901", typeof(PlatformDetection), nameof(PlatformDetection.IsMariner1), nameof(PlatformDetection.IsInContainer))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/81901", typeof(PlatformDetection), nameof(PlatformDetection.IsCentos7), nameof(PlatformDetection.IsInContainer))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/82055", typeof(PlatformDetection), nameof(PlatformDetection.IsUbuntu1804), nameof(PlatformDetection.IsArmProcess), nameof(PlatformDetection.IsInContainer))]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsLinux))]
[ConditionalFact(typeof(PlatformDetection), nameof(PlatformDetection.IsLinux), nameof(PlatformDetection.IsInHelix))]
public void SupportedLinuxPlatforms_IsSupportedIsTrue()
{
_output.WriteLine($"Running on {PlatformDetection.GetDistroVersionString()}");
Expand Down

0 comments on commit c53d17c

Please sign in to comment.