mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
46 lines
1.2 KiB
Bash
Executable File
46 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
PASSED_ARGS="$@"
|
|
if [[ "$OSTYPE" == "darwin"* ]] || [[ "$AGENT_OS" == "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"* ]] || [[ "$AGENT_OS" == "Darwin"* ]]; then
|
|
NAME=`node -p "require('./product.json').nameLong"`
|
|
CODE="./.build/electron/$NAME.app/Contents/MacOS/Electron"
|
|
else
|
|
NAME=`node -p "require('./product.json').applicationName"`
|
|
CODE=".build/electron/$NAME"
|
|
fi
|
|
|
|
# Default to only running stable tests if test grep isn't set
|
|
if [[ "$ADS_TEST_GREP" == "" ]]; then
|
|
echo Running stable tests only
|
|
export ADS_TEST_GREP="@UNSTABLE@"
|
|
export ADS_TEST_INVERT_GREP=1
|
|
fi
|
|
|
|
# Node modules
|
|
test -d node_modules || yarn
|
|
|
|
# Get electron
|
|
yarn electron
|
|
|
|
# Unit Tests
|
|
if [[ "$OSTYPE" == "darwin"* ]] || [[ "$AGENT_OS" == "Darwin"* ]]; then
|
|
cd $ROOT ; ulimit -n 4096 ; \
|
|
ELECTRON_ENABLE_LOGGING=1 \
|
|
"$CODE" \
|
|
test/electron/index.js $PASSED_ARGS
|
|
else
|
|
cd $ROOT ; \
|
|
ELECTRON_ENABLE_LOGGING=1 \
|
|
"$CODE" \
|
|
test/electron/index.js --no-sandbox $PASSED_ARGS # Electron 6 introduces a chrome-sandbox that requires root to run. This can fail. Disable sandbox via --no-sandbox.
|
|
fi
|