diff options
author | Ben Smith <binji@chromium.org> | 2016-03-07 02:12:42 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-03-12 20:44:31 -0800 |
commit | 5aa9b6637e411e69fd361fb6517b71b169690df4 (patch) | |
tree | 9ece6f476def9b82ed713137f4f64e094a0bb97f /scripts/travis-test.sh | |
parent | ab91bed948b214bb94f8fbab8169a7e4b1a3eefc (diff) | |
download | wabt-5aa9b6637e411e69fd361fb6517b71b169690df4.tar.gz wabt-5aa9b6637e411e69fd361fb6517b71b169690df4.tar.bz2 wabt-5aa9b6637e411e69fd361fb6517b71b169690df4.zip |
build CMakeLists w/out building flex/bison
This will test that the prebuilt C source files are updated along with
the .y and .l files.
Diffstat (limited to 'scripts/travis-test.sh')
-rwxr-xr-x | scripts/travis-test.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/travis-test.sh b/scripts/travis-test.sh index 4dc3279b..b684333f 100755 --- a/scripts/travis-test.sh +++ b/scripts/travis-test.sh @@ -34,6 +34,10 @@ run_tests() { (cd ${ROOT_DIR} && log_and_run test/run-tests.py -e ${EXE} ${ARG_FLAG-} --timeout=10) } +if [ ${CC} = "gcc" ]; then + run_tests out/gcc/Debug-no-flex-bison/sexpr-wasm +fi + for COMPILER in ${COMPILERS}; do for BUILD_TYPE in ${BUILD_TYPES_UPPER}; do EXE=out/${COMPILER}/${BUILD_TYPE}/sexpr-wasm |