diff options
author | Asumu Takikawa <asumu@igalia.com> | 2021-12-06 14:27:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 14:27:32 -0800 |
commit | c9f22f2b73ed3b01172bfbcfe4f7304dea212ec9 (patch) | |
tree | fed60d6fd089ceb88e68e62f174d74814101b4e0 /test/gen-spec-wast.py | |
parent | 5d2123b13738bdcbb3a269338cad9807805d442a (diff) | |
download | wabt-c9f22f2b73ed3b01172bfbcfe4f7304dea212ec9.tar.gz wabt-c9f22f2b73ed3b01172bfbcfe4f7304dea212ec9.tar.bz2 wabt-c9f22f2b73ed3b01172bfbcfe4f7304dea212ec9.zip |
Add specification tests for exception handling proposal (#1764)
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.
Diffstat (limited to 'test/gen-spec-wast.py')
-rwxr-xr-x | test/gen-spec-wast.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/gen-spec-wast.py b/test/gen-spec-wast.py index 05eb2f43..9f511442 100755 --- a/test/gen-spec-wast.py +++ b/test/gen-spec-wast.py @@ -138,6 +138,7 @@ class WastWriter(object): 'assert_return': self._WriteAssertReturnCommand, 'assert_trap': self._WriteAssertActionCommand, 'assert_exhaustion': self._WriteAssertActionCommand, + 'assert_exception': self._WriteAssertActionCommand, } func = command_funcs.get(command['type']) |