summaryrefslogtreecommitdiff
path: root/scripts/travis-test.sh
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2019-04-03 23:20:50 -0700
committerGitHub <noreply@github.com>2019-04-03 23:20:50 -0700
commitcc39cc1174ac4182977704845d8dd1cdb8926f43 (patch)
tree7cf0a98bb63c096b477de1f4eb93b13b97da277d /scripts/travis-test.sh
parent65663b0e20cba18d340ca35195b13a37936adac6 (diff)
downloadwabt-cc39cc1174ac4182977704845d8dd1cdb8926f43.tar.gz
wabt-cc39cc1174ac4182977704845d8dd1cdb8926f43.tar.bz2
wabt-cc39cc1174ac4182977704845d8dd1cdb8926f43.zip
Rewrite the lexer manually, instead of re2c (#1058)
The current lexer uses re2c. It easy to change, but it generates a huge amount of code, and it's easy to forgot to update it. This PR rewrites the lexer manually, and uses gperf instead to match keywords. The generated source is much smaller.
Diffstat (limited to 'scripts/travis-test.sh')
-rwxr-xr-xscripts/travis-test.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/travis-test.sh b/scripts/travis-test.sh
index 3ce6e0b2..a03e132d 100755
--- a/scripts/travis-test.sh
+++ b/scripts/travis-test.sh
@@ -45,12 +45,6 @@ set_run_test_args() {
BINDIR="out/${COMPILER}/${BUILD_TYPE}/${CONFIG}"
}
-if [ ${CC} = "gcc" ]; then
- if set_run_test_args gcc Debug no-re2c; then
- run_tests
- fi
-fi
-
for BUILD_TYPE in ${BUILD_TYPES_UPPER}; do
if [[ -n "${SANITIZER:-}" ]]; then
if set_run_test_args ${COMPILER} ${BUILD_TYPE} ${SANITIZER}; then