summaryrefslogtreecommitdiff
path: root/test/interp/empty.txt
Commit message (Collapse)AuthorAgeFilesLines
* Use a new format for the spec JSON writer/parserBen Smith2016-11-031-1/+1
| | | | | | | | | | | | | | | | | | The previous spec JSON format was defined around modules. This is because the previous spec tests would only run assertions on the most recently read module. In addition, the previous spec writer would write the assertions as new exported functions in the module, and run those. The primary reason for doing this was to allow for passing/returning i64 values, which was necessary to test in a JavaScript host. Now that the primary host for running the spec tests is wasm-interp, we no longer need do bundle assertions into the module. Also, some of the new spec tests allow running exported functions on a module that is not the most-recently-read module. The new spec test format is now defined around commands. The commands map directly to the spec format commands, e.g. `module`, `assert_invalid`, `assert_trap`, etc.
* fix most of the interp testsBen Smith2016-09-291-3/+2
| | | | Still need to do imports
* fix some bugs w/ nullary calls and returnsBen Smith2016-04-021-1/+1
|
* add interpreter tests, copied from d8 testsBen Smith2016-04-021-0/+7