summaryrefslogtreecommitdiff
path: root/travis-emcc-tests.sh
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2019-01-08 14:59:51 -0800
committerGitHub <noreply@github.com>2019-01-08 14:59:51 -0800
commitaf5adae23e7cfcc2c933d72142a3d58576af769d (patch)
tree3c37dfdcfac20fb61f95ffedeb653dfa249e12fd /travis-emcc-tests.sh
parent34fbbb3dde9f17a83ed63264d1165ebb7a66ddc7 (diff)
downloadbinaryen-af5adae23e7cfcc2c933d72142a3d58576af769d.tar.gz
binaryen-af5adae23e7cfcc2c933d72142a3d58576af769d.tar.bz2
binaryen-af5adae23e7cfcc2c933d72142a3d58576af769d.zip
Remove interp and fix tests (#1858)
Updates tests to the latest notation changes, and also remove wasm.js (see kripken/emscripten#7831 ) as we'd need to either rebuild it or update it for the new notation as well, and it's not used at this point.
Diffstat (limited to 'travis-emcc-tests.sh')
-rwxr-xr-xtravis-emcc-tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/travis-emcc-tests.sh b/travis-emcc-tests.sh
index 20cddd628..b2de91abb 100755
--- a/travis-emcc-tests.sh
+++ b/travis-emcc-tests.sh
@@ -1,11 +1,11 @@
set -e
echo "travis-test pre-test"
-python -c "import check ; check.run_binaryen_js_tests() ; check.run_emscripten_tests()"
+python -c "import check ; check.run_binaryen_js_tests()"
echo "travis-test build"
ls -al bin/
./build-js.sh -g
ls -al bin/
echo "travis-test post-test"
-python -c "import check ; check.run_binaryen_js_tests() ; check.run_emscripten_tests()"
+python -c "import check ; check.run_binaryen_js_tests()"
echo "travis-test yay!"