summaryrefslogtreecommitdiff
path: root/test/gen-spec-js
Commit message (Collapse)AuthorAgeFilesLines
* Finish instruction renaming (#1792)Heejin Ahn2021-12-204-13/+13
| | | | | | | | | | | | | This finishes #985. This - replaces the old names in the tests with the new names - drops support for the deprecated names - renames test files to match new instruction names I don't think dropping support for the old names will be a problem at this point. #985 says the old names are supported for convenience but we should remove those too at some point; that "some point" may have well arrived given that three years have passed. The lists of names updated are in #933, #1564, WebAssembly/spec#720.
* Update testsuite (#1275)Sam Clegg2020-01-091-12/+12
| | | | | | | | | | | | | | | | | The two primary changes involved are: 1. Removal of `assert_return_canonical_nan`/`arithetic nan` in favor of special `nan:canonical`/`nan:arithmetic` constants that can only be used in test expectations. See: https://github.com/WebAssembly/spec/pull/1104 2. New trapping behaviour for bulk memory operations. Range checks are now performed up front for opterations such as memory.fill and memory.copy. See: https://github.com/webassembly/bulk-memory-operations/issues/111 And: https://github.com/webassembly/bulk-memory-operations/pull/123 The old behaviour is still kept around to support table.fill which is defined in reference-types proposal and has yet to be updated.
* Rename run args (#728)Ben Smith2018-01-2112-12/+12
| | | | As suggested in https://github.com/WebAssembly/wabt/pull/725#discussion_r162516714.
* Update output of gen-spec-js to match spec (#654)Ben Smith2017-10-1412-38/+125
| | | | | | * Use "call" and "get" helpers instead of accessing exports directly * Don't use `$$` for the most recent instance, instead always use a numbered instance (e.g. `$3`) * Add comments before each command with file and line number
* Update testsuite; more lexer/parser changes (#484)Ben Smith2017-06-112-1/+12
| | | | | | | | | | | | | | | | | | | | * Add support for quoted modules: `(module quote "...")` * Binary modules must be annotated: `(module binary "...")` * Multiple result blocks are no longer a parser error: `(func (result i32) (result i32) ...)` * Function types can specify unused bind variables: `(type (func (param $foo)))` * Rename `RawModule` -> `ScriptModule`. This encapsulates a module that may not be parsed yet, whether binary or "quoted". * Validate load/store offsets and alignment in the parser, not in the validator. The spec tests assume that you can catch these errors with `assert_malformed`. * Parse wast files in `wasm-interp` when checking malformed/invalid/etc. modules. This allows us to run all assertions at the same time, which is nice. `wasm-interp` should probably be renamed, though. * Two tests in `type.wast` fail because they use: `(assert_invalid (module quote "..."))`. I'd prefer that we don't support this, since it's unnecessary, and additional work. I'll fix in a follow-up CL if we decide this is worth keeping.
* Support arithmetic/canonical NaN; update testsuite (#368)Ben Smith2017-03-241-6/+25
| | | | | | | | | | | | | | | Positive NaN (+nan) is defined as being a NaN value where the sign bit is clear, the exponent is all ones, and the tag has only the "quiet" bit set. The quiet bit is the most-significant bit of the tag. For example, for a 32-bit float, +nan is 0x7cf00000. "Canonical NaN" is either +nan or -nan, where -nan is +nan with the sign bit set. "Arithmetic NaN" is defined as any other quiet NaN (i.e. the quiet bit must be set, but any other bit can be either 0 or 1.) This change doesn't update the interpreter because it is only a loosening of the previous NaN behavior.
* Update gen-spec-js to support assert_exhaustion (#313)Ben Smith2017-02-271-0/+13
|
* Update wasm binary format label to 1 (#310)Derek Schuff2017-02-249-12/+12
| | | | | | | | | | | | * Update wasm binary format label to 1 Rebaseline tests, but no other changes. * Revert test/spec/globals.txt * Update testsuite * Update spec binary.wast test and testsuite repo
* Fix gen-spec-js.pyBen Smith2016-12-0510-0/+184
This now (mostly) matches the output from the spec interpreter.