Skip to content

Commit

Permalink
[LinuxBionic] Disable failing ProcessStartInfo tests on CI
Browse files Browse the repository at this point in the history
A few ProcessStartInfo tests sometimes fail for strange reasons. Disabling until we can look further.

Addresses dotnet#76140
  • Loading branch information
Steve Pfister committed Oct 4, 2022
1 parent a6d3960 commit ab2e114
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ public void TestEnvironmentOfChildProcess()
}

[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/76140", TestPlatforms.LinuxBionic)]
public void EnvironmentGetEnvironmentVariablesIsCaseSensitive()
{
var caseSensitiveEnvVars = new Dictionary<string, string>(StringComparer.Ordinal)
Expand All @@ -301,6 +302,7 @@ public void EnvironmentGetEnvironmentVariablesIsCaseSensitive()
}

[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/76140", TestPlatforms.LinuxBionic)]
public void ProcessStartInfoEnvironmentDoesNotThrowForCaseSensitiveDuplicates()
{
var caseSensitiveEnvVars = new Dictionary<string, string>(StringComparer.Ordinal)
Expand All @@ -325,6 +327,7 @@ public void ProcessStartInfoEnvironmentDoesNotThrowForCaseSensitiveDuplicates()
}

[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/76140", TestPlatforms.LinuxBionic)]
public void ProcessStartInfoEnvironmentVariablesDoesNotThrowForCaseSensitiveDuplicates()
{
var caseSensitiveEnvVars = new Dictionary<string, string>(StringComparer.Ordinal)
Expand Down

0 comments on commit ab2e114

Please sign in to comment.