summaryrefslogtreecommitdiff
path: root/test/spec/utf8-import-field.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fix run-tests.py when STDIN_FILE is used > 1 times (#711)Ben Smith2018-01-091-176/+176
| | | | | | | | | | Each test should be run with its own directory of outputs, so the tests can be run in parallel without clobbering results. Since I added wasm2c, the spec `.wast` files were being used twice, but using the same output directory. This would often work properly in a full run, but was flaky, since they both write `.json` and `.wasm` files with the same names. This fix gives them their own directories by always using the directory name of the test.
* Remove BinaryErrorHandler, rename SourceErrorHandler (#553)Ben Smith2017-07-061-176/+176
| | | | | | | Since SourceErrorHandler can support binary locations, it doesn't make much sense to have two different error handlers. There is now only an ErrorHandler base class, and the first argument specifies whether the error handler is expecting text or binary locations.
* Implement UTF-8 validation, update testsuite (#429)Ben Smith2017-05-191-0/+357
This is enough to pass the testuite, but doesn't yet validate utf8 strings in the text format.