From: Mike McLaughlin Date: Wed, 4 Sep 2024 18:23:53 +0000 (-0700) Subject: Enable new exception handling in .NET 9 SOS testing (#4817) X-Git-Tag: accepted/tizen/unified/20241231.014852~39^2^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8bc9e2ad71c8c3df4bb1655be7ee9ddcc59cffcf;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git Enable new exception handling in .NET 9 SOS testing (#4817) --- diff --git a/src/SOS/SOS.UnitTests/SOSRunner.cs b/src/SOS/SOS.UnitTests/SOSRunner.cs index 9f3aee8dc..5511fe2ed 100644 --- a/src/SOS/SOS.UnitTests/SOSRunner.cs +++ b/src/SOS/SOS.UnitTests/SOSRunner.cs @@ -320,7 +320,6 @@ public class SOSRunner : IDisposable 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)); @@ -680,7 +679,6 @@ public class SOSRunner : IDisposable 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));