Skip to content

Commit 42b3463

Browse files
committed
Remove env variables
1 parent 3454261 commit 42b3463

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/vstest.console/Program.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ public static class Program
1818
/// <param name="args">Arguments provided on the command line.</param>
1919
/// <returns>0 if everything was successful and 1 otherwise.</returns>
2020
public static int Main(string[] args)
21-
{
22-
Environment.SetEnvironmentVariable("COMPlus_DbgEnableElfDumpOnMacOS", "1");
23-
Environment.SetEnvironmentVariable("COMPlus_DbgEnableMiniDump", "1");
24-
21+
{
2522
var debugEnabled = Environment.GetEnvironmentVariable("VSTEST_RUNNER_DEBUG");
2623
if (!string.IsNullOrEmpty(debugEnabled) && debugEnabled.Equals("1", StringComparison.Ordinal))
2724
{

0 commit comments

Comments
 (0)