diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-01-08 14:59:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-08 14:59:51 -0800 |
commit | af5adae23e7cfcc2c933d72142a3d58576af769d (patch) | |
tree | 3c37dfdcfac20fb61f95ffedeb653dfa249e12fd /travis-emcc-tests.sh | |
parent | 34fbbb3dde9f17a83ed63264d1165ebb7a66ddc7 (diff) | |
download | binaryen-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-x | travis-emcc-tests.sh | 4 |
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!" |