Browse Source

Minor test script improvements.

pull/1869/head
Joao Matos 10 months ago
parent
commit
7871125e9c
  1. 2
      tests/emscripten/test.sh
  2. 2
      tests/napi/test.sh
  3. 1
      tests/quickjs/test.sh
  4. 2
      tests/ts/test.sh

2
tests/emscripten/test.sh

@ -7,7 +7,7 @@ configuration=debug
platform=x64 platform=x64
jsinterp=node jsinterp=node
if [ $CI = "true" ]; then if [ "$CI" = "true" ]; then
red="" red=""
green="" green=""
reset="" reset=""

2
tests/napi/test.sh

@ -5,7 +5,7 @@ rootdir="$dir/../.."
configuration=Release configuration=Release
platform=x64 platform=x64
if [ $CI = "true" ]; then if [ "$CI" = "true" ]; then
red="" red=""
green="" green=""
reset="" reset=""

1
tests/quickjs/test.sh

@ -35,5 +35,4 @@ echo
echo "${green}Executing JS tests with QuickJS${reset}" echo "${green}Executing JS tests with QuickJS${reset}"
cp $dir/gen/bin/$configuration/libtest.so $dir cp $dir/gen/bin/$configuration/libtest.so $dir
#cp $dir/gen/bin/$configuration/libtest.dylib $dir
$jsinterp --std $dir/test.js $jsinterp --std $dir/test.js

2
tests/ts/test.sh

@ -7,7 +7,7 @@ configuration=debug
platform=x64 platform=x64
jsinterp="$rootdir/deps/quickjs/qjs-debug" jsinterp="$rootdir/deps/quickjs/qjs-debug"
if [ $CI = "true" ]; then if [ "$CI" = "true" ]; then
red="" red=""
green="" green=""
reset="" reset=""

Loading…
Cancel
Save