diff options
author | Sam Clegg <sbc@chromium.org> | 2016-09-22 18:39:37 -0700 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2016-09-22 18:39:37 -0700 |
commit | 86c043d6bd7e5708f9b07eeb2a0d1b315a9d374f (patch) | |
tree | 6b27b4a4a4d69eec79c4e7422f132bdccbc3a4fc /scripts | |
parent | fd48108205003e96ea2d87586ba23bc907b020ff (diff) | |
download | wabt-86c043d6bd7e5708f9b07eeb2a0d1b315a9d374f.tar.gz wabt-86c043d6bd7e5708f9b07eeb2a0d1b315a9d374f.tar.bz2 wabt-86c043d6bd7e5708f9b07eeb2a0d1b315a9d374f.zip |
Fix broken 'run-tests' target (#104)
This is followup to (#102) which renamed the executable
files. It propagated the rename the tools and test
runner.
It also fixes the 'run-tests' target which was passing
the wrong argument name to the run_tests.py script.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis-test.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/travis-test.sh b/scripts/travis-test.sh index 07b334ac..5ab519a6 100755 --- a/scripts/travis-test.sh +++ b/scripts/travis-test.sh @@ -49,13 +49,13 @@ set_run_test_args() { RUN_TEST_ARGS="" local EXE_DIR=out/${COMPILER}/${BUILD_TYPE}/${CONFIG} - SEXPR_WASM=${EXE_DIR}/sexpr-wasm - WASM_WAST=${EXE_DIR}/wasm-wast + WAST2WASM=${EXE_DIR}/wast2wasm + WASM2WAST=${EXE_DIR}/wasm2wast WASM_INTERP=${EXE_DIR}/wasm-interp - check_and_add_flag "--sexpr-wasm" ${SEXPR_WASM} && \ - check_and_add_flag "--wasm-wast" ${WASM_WAST} && \ - check_and_add_flag "--wasm-interp" ${WASM_INTERP} + check_and_add_flag "--wast2wasm-executable" ${WAST2WASM} && \ + check_and_add_flag "--wasm2wast-executable" ${WASM2WAST} && \ + check_and_add_flag "--wasm-interp-executable" ${WASM_INTERP} } if [ ${CC} = "gcc" ]; then |