mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-05 05:16:02 -06:00
* fix: rename product executable name on macOS * chore: update test/automation/src/electron.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: update test/automation/src/electron.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * chore: rename in additional places * chore: rename in code-perf.js * chore: create symlink for backwards compatibility --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
42 lines
1012 B
Bash
Executable File
42 lines
1012 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
|
|
ROOT=$(dirname $(dirname $(realpath "$0")))
|
|
else
|
|
ROOT=$(dirname $(dirname $(readlink -f $0)))
|
|
fi
|
|
|
|
cd $ROOT
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
NAME=`node -p "require('./product.json').nameLong"`
|
|
EXE_NAME=`node -p "require('./product.json').nameShort"`
|
|
CODE="./.build/electron/$NAME.app/Contents/MacOS/$EXE_NAME"
|
|
else
|
|
NAME=`node -p "require('./product.json').applicationName"`
|
|
CODE=".build/electron/$NAME"
|
|
fi
|
|
|
|
VSCODECRASHDIR=$ROOT/.build/crashes
|
|
|
|
# Node modules
|
|
test -d node_modules || npm i
|
|
|
|
# Get electron
|
|
npm run electron
|
|
|
|
# Unit Tests
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
cd $ROOT ; ulimit -n 4096 ; \
|
|
ELECTRON_ENABLE_LOGGING=1 \
|
|
"$CODE" \
|
|
test/unit/electron/index.js --crash-reporter-directory=$VSCODECRASHDIR "$@"
|
|
else
|
|
cd $ROOT ; \
|
|
ELECTRON_ENABLE_LOGGING=1 \
|
|
"$CODE" \
|
|
test/unit/electron/index.js --crash-reporter-directory=$VSCODECRASHDIR "$@"
|
|
fi
|