Skip to content

Commit 7871125

Browse files
committed
Minor test script improvements.
1 parent 45d6b32 commit 7871125

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

tests/emscripten/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ configuration=debug
77
platform=x64
88
jsinterp=node
99

10-
if [ $CI = "true" ]; then
10+
if [ "$CI" = "true" ]; then
1111
red=""
1212
green=""
1313
reset=""

tests/napi/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rootdir="$dir/../.."
55
configuration=Release
66
platform=x64
77

8-
if [ $CI = "true" ]; then
8+
if [ "$CI" = "true" ]; then
99
red=""
1010
green=""
1111
reset=""

tests/quickjs/test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,4 @@ echo
3535

3636
echo "${green}Executing JS tests with QuickJS${reset}"
3737
cp $dir/gen/bin/$configuration/libtest.so $dir
38-
#cp $dir/gen/bin/$configuration/libtest.dylib $dir
3938
$jsinterp --std $dir/test.js

tests/ts/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ configuration=debug
77
platform=x64
88
jsinterp="$rootdir/deps/quickjs/qjs-debug"
99

10-
if [ $CI = "true" ]; then
10+
if [ "$CI" = "true" ]; then
1111
red=""
1212
green=""
1313
reset=""

0 commit comments

Comments
 (0)