Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test.sh')
-rwxr-xr-xscripts/test.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/test.sh b/scripts/test.sh
index 10ffb97c71f..14a72e09cc3 100755
--- a/scripts/test.sh
+++ b/scripts/test.sh
@@ -21,6 +21,8 @@ else
CODE=".build/electron/$NAME"
fi
+VSCODECRASHDIR=$ROOT/.build/crashes
+
# Node modules
test -d node_modules || yarn
@@ -32,10 +34,10 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
cd $ROOT ; ulimit -n 4096 ; \
ELECTRON_ENABLE_LOGGING=1 \
"$CODE" \
- test/unit/electron/index.js "$@"
+ test/unit/electron/index.js --crash-reporter-directory=$VSCODECRASHDIR "$@"
else
cd $ROOT ; \
ELECTRON_ENABLE_LOGGING=1 \
"$CODE" \
- test/unit/electron/index.js $LINUX_EXTRA_ARGS "$@"
+ test/unit/electron/index.js --crash-reporter-directory=$VSCODECRASHDIR $LINUX_EXTRA_ARGS "$@"
fi