Skip to content

Commit

Permalink
Enable new exception handling in .NET 9 SOS testing (#4817)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikem8361 authored Sep 4, 2024
1 parent 5abca57 commit 8bc9e2a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/SOS/SOS.UnitTests/SOSRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,6 @@ public static async Task<string> CreateDump(TestInformation information)
ProcessRunner processRunner = new ProcessRunner(exePath, ReplaceVariables(variables, arguments.ToString())).
WithEnvironmentVariable("DOTNET_MULTILEVEL_LOOKUP", "0").
WithEnvironmentVariable("DOTNET_ROOT", config.DotNetRoot).
WithEnvironmentVariable("DOTNET_LegacyExceptionHandling", "1").
WithRuntimeConfiguration("DbgEnableElfDumpOnMacOS", "1").
WithLog(new TestRunner.TestLogger(outputHelper.IndentedOutput)).
WithTimeout(TimeSpan.FromMinutes(10));
Expand Down Expand Up @@ -680,7 +679,6 @@ public static async Task<SOSRunner> StartDebugger(TestInformation information, D
ProcessRunner processRunner = new ProcessRunner(debuggerPath, ReplaceVariables(variables, arguments.ToString())).
WithEnvironmentVariable("DOTNET_MULTILEVEL_LOOKUP", "0").
WithEnvironmentVariable("DOTNET_ROOT", config.DotNetRoot).
WithEnvironmentVariable("DOTNET_LegacyExceptionHandling", "1").
WithLog(scriptLogger).
WithTimeout(TimeSpan.FromMinutes(10));

Expand Down

0 comments on commit 8bc9e2a

Please sign in to comment.