We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3454261 commit 42b3463Copy full SHA for 42b3463
src/vstest.console/Program.cs
@@ -18,10 +18,7 @@ public static class Program
18
/// <param name="args">Arguments provided on the command line.</param>
19
/// <returns>0 if everything was successful and 1 otherwise.</returns>
20
public static int Main(string[] args)
21
- {
22
- Environment.SetEnvironmentVariable("COMPlus_DbgEnableElfDumpOnMacOS", "1");
23
- Environment.SetEnvironmentVariable("COMPlus_DbgEnableMiniDump", "1");
24
-
+ {
25
var debugEnabled = Environment.GetEnvironmentVariable("VSTEST_RUNNER_DEBUG");
26
if (!string.IsNullOrEmpty(debugEnabled) && debugEnabled.Equals("1", StringComparison.Ordinal))
27
{
0 commit comments