summaryrefslogtreecommitdiff
path: root/test/parse/module/bad-export-func-undefined.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fix TODOs in validator; only affects error outputBen Smith2020-02-291-1/+1
| | | | | | The major change to the error output is showing the max value instead of max value - 1. It's a bit weird to see "out of range: 0 (max 0)" but seeing 4294967295 is strictly worse.
* Update spec testsuite (#1237)Sam Clegg2019-11-221-1/+1
| | | | | | | The only major change to the interpreter is to move segment initialization out `ReadBinaryInterp` (in the binary reader) and into interp.cc. This is because the test suite now expects out of bound semgments to be reported during initialization rather than reported as validation errors.
* `wat2wasm` is no longer default TOOL for tests (#735)Ben Smith2018-01-251-1/+2
| | | The TOOL must specified explicitly.
* Remove BinaryErrorHandler, rename SourceErrorHandler (#553)Ben Smith2017-07-061-1/+1
| | | | | | | 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.
* Update test/run-tests.py (#255)Ben Smith2017-01-051-1/+1
| | | | | * Write all intermediate output to out/ * Use real paths for all test names (i.e. include "test/") * A few Python3 fixes
* rename import/export parse tests to include funcBen Smith2016-09-291-0/+7
This is in preparation for adding import/export tests of tables, memories and globals.