summaryrefslogtreecommitdiff
path: root/test/gen-spec-wast.py
diff options
context:
space:
mode:
authorAsumu Takikawa <asumu@igalia.com>2021-12-06 14:27:32 -0800
committerGitHub <noreply@github.com>2021-12-06 14:27:32 -0800
commitc9f22f2b73ed3b01172bfbcfe4f7304dea212ec9 (patch)
treefed60d6fd089ceb88e68e62f174d74814101b4e0 /test/gen-spec-wast.py
parent5d2123b13738bdcbb3a269338cad9807805d442a (diff)
downloadwabt-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-xtest/gen-spec-wast.py1
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'])