summaryrefslogtreecommitdiff
path: root/test/gen-spec-wast.py
Commit message (Collapse)AuthorAgeFilesLines
* Add specification tests for exception handling proposal (#1764)Asumu Takikawa2021-12-061-0/+1
| | | | | | | | This PR imports the spec tests from the Wasm testsuite repo and adds infrastructure to run them correctly. * Adds test expectations for exception handling proposal spec tests. * Adds missing tag signature matching code for import tests. * Adds support for the `assert_exception` command used in new tests. * Fix filename normalization for the spec test runner.
* Enable reference types by default (#1729)Sam Clegg2021-10-131-2/+2
| | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have ref types merged yet so this change disables ref types when running some of those tests. This can be removed in a followup when we update the testsuite.
* Enable bulk memory by default (#1728)Sam Clegg2021-10-131-2/+0
| | | | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have bulk memory merged yet so this change disables bulk memory when running some of those tests. This will be removed in a followup when we update the testsuite. Fixes: #1717
* SIMD is now phase 5, enable it by default (#1712)Ng Zhi An2021-09-201-2/+0
| | | | | * SIMD is now phase 5, enable it by default * Update test flags, rebase test, and docs
* Added initial "memory64" proposal support (#1500)Wouter van Oortmerssen2020-08-071-0/+2
|
* Reference types changes to remove subtyping (#1407)Ben Smith2020-05-281-4/+2
| | | | | | | | Main changes: * Rename `anyref` -> `externref` * Remove `nullref` * Rename `hostref` -> `externref` * `ref.null` and `ref.is_null` now have "ref kind" parameter * Add ref kind keywords: `func`, `extern`, `exn`
* Fix flake8 failures (#1358)Ben Smith2020-03-131-2/+1
|
* Add Script to generate .wast from .json (#1353)Ben Smith2020-03-111-0/+308
The one difference is that all `(module...)` are converted to `(module binary)`.