summaryrefslogtreecommitdiff
path: root/scripts/travis-test.sh
Commit message (Collapse)AuthorAgeFilesLines
* Complete conversion to github actions (#1431)Sam Clegg2020-05-181-61/+0
|
* Rewrite the lexer manually, instead of re2c (#1058)Ben Smith2019-04-031-6/+0
| | | | | 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.
* Rewrite parser as recursive descent (#591)Ben Smith2017-08-151-1/+1
| | | | | | | | | | | | | | | | | | * Remove Bison dependency * Remove pre-generated parser files * Rename build config from no-re2c-bison to no-re2c * Add a simple make_unique implementation * Move handling of module bindings into ir.cc * Simplify lexer - Remove lookahead, the parser handles this now - Unify Token/LexerToken, it only contains terminal values now - Refactor setting token type and value into one function (e.g. LITERAL, RETURN => RETURN_LITERAL) * New Parser - Uses two tokens of lookahead (use Peek(0) or Peek(1)) - Consume() consumes one token of any kind - Match(t) consumes the current token if it matches - PeekMatch(t) returns true iff the token matches, but doesn't consume - Basic error synchronization; plenty of room for improvement here
* Return non-zero on travis if tests fail (#383)Sam Clegg2017-03-311-3/+12
| | | | | | * Return non-zero on travis if tests fail Oops, we were silently ignoring tests failures on traivs.
* Add wabt::string_view, based on C++17 string_view (#359)Ben Smith2017-03-171-2/+3
| | | | | * Add wabt::string_view, based on C++17 string_view Also add wabt-unittests to test it.
* Remove WabtAllocator (#307)Ben Smith2017-02-171-2/+0
| | | | It complicates the code everywhere. It's faster to use a stack allocator, but not worth the trouble for maintainability.
* Pass --bindir to test helpers rather than full path to each tool (#273)Sam Clegg2017-01-121-2/+1
| | | This simplifies the invocations and aids maintainability.
* Add wasmopcodecnt testsBen Smith2016-10-101-20/+1
| | | | | Also rename the last few places using SexprWasm, WasmWast. Make formatting a little nicer too.
* Fix broken 'run-tests' target (#104)Sam Clegg2016-09-221-5/+5
| | | | | | | | 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.
* {download,upload}-d8.sh scripts support MacOSXBen Smith2016-05-051-2/+2
| | | | Also, remove uses of readlink -f because they don't work on OSX.
* create wider but shallower travis build matrixBen Smith2016-04-301-12/+8
|
* lex using re2c instead of flexBen Smith2016-04-211-1/+1
|
* add wasm-interp to travis-test.shBen Smith2016-04-021-13/+27
| | | | | Also refactor travis-test.sh a bit so it's easier to add more executables.
* clean up Makefile and CMakeLists.txtBen Smith2016-04-011-4/+4
| | | | | Primarily this is moving the sanitizer builds out of CMakeLists.txt and into the Makefile. It's much cleaner this way.
* a few more fixes for roundtrip testsBen Smith2016-03-211-14/+20
| | | | | | | | * write roundtrip files to a different location so two threads don't fight over writing it (probably should just write it once, but I can optimize that later) * refactor travis-test.sh a bit to cleanup passing args to run_tests * pass args when running gcc/Debug-no-flex-bison
* travis-test.sh now handles wasm-wastBen Smith2016-03-211-13/+13
|
* build CMakeLists w/out building flex/bisonBen Smith2016-03-121-0/+4
| | | | | This will test that the prebuilt C source files are updated along with the .y and .l files.
* add 32-bit build for gccBen Smith2016-03-121-18/+22
|
* .travis fixes for cmake changeBen Smith2016-03-121-0/+55