Skip to content

Commit

Permalink
Minor test script improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
tritao committed Sep 3, 2024
1 parent 45d6b32 commit 7871125
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/emscripten/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ configuration=debug
platform=x64
jsinterp=node

if [ $CI = "true" ]; then
if [ "$CI" = "true" ]; then
red=""
green=""
reset=""
Expand Down
2 changes: 1 addition & 1 deletion tests/napi/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rootdir="$dir/../.."
configuration=Release
platform=x64

if [ $CI = "true" ]; then
if [ "$CI" = "true" ]; then
red=""
green=""
reset=""
Expand Down
1 change: 0 additions & 1 deletion tests/quickjs/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,4 @@ echo

echo "${green}Executing JS tests with QuickJS${reset}"
cp $dir/gen/bin/$configuration/libtest.so $dir
#cp $dir/gen/bin/$configuration/libtest.dylib $dir
$jsinterp --std $dir/test.js
2 changes: 1 addition & 1 deletion tests/ts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ configuration=debug
platform=x64
jsinterp="$rootdir/deps/quickjs/qjs-debug"

if [ $CI = "true" ]; then
if [ "$CI" = "true" ]; then
red=""
green=""
reset=""
Expand Down

0 comments on commit 7871125

Please sign in to comment.