Skip to content

Commit 51f5977

Browse files
committed
[macOS] fix "DOTNET_DbgEnableMiniDump is set and the createdump binary does not exist"
1 parent 57f79da commit 51f5977

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/TestBuilder.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,9 @@ public static void RunNodeTestCase(
299299

300300
// Globalization data will not be used, even if available
301301
startInfo.Environment["DOTNET_SYSTEM_GLOBALIZATION_INVARIANT"] = "true";
302+
303+
// https://github.com/microsoft/vscode-dotnettools/issues/2511
304+
startInfo.Environment["DOTNET_DbgEnableMiniDump"] = "0";
302305

303306
foreach (KeyValuePair<string, string> pair in testEnvironmentVariables)
304307
{

0 commit comments

Comments
 (0)