summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2023-12-13 13:53:31 -0800
committerGitHub <noreply@github.com>2023-12-13 13:53:31 -0800
commit94f9b9a0c4e57bae64bc787362712874c6d5a00d (patch)
treedb3d761ccdf4fc2d14c127352f036fc3d559c930 /scripts
parent61c3666ebd85eaadb11d06ce8048f4bea026af3d (diff)
downloadbinaryen-94f9b9a0c4e57bae64bc787362712874c6d5a00d.tar.gz
binaryen-94f9b9a0c4e57bae64bc787362712874c6d5a00d.tar.bz2
binaryen-94f9b9a0c4e57bae64bc787362712874c6d5a00d.zip
[EH][test] Split EH tests into old and new spec (#6178)
This moves tests for the old EH spec to `exception-handling-old.wast` and moves the new `exnref` test into `exception-handling.wast`, onto which I plan to add more tests for the new EH spec. The primary reason for splitting the files is I plan to exclude the new EH test from the fuzzing while the new spec's implementation is in progress, and I don't want to exclude the old EH tests altogether.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/fuzz_opt.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py
index 812b290f7..28cf4eb70 100755
--- a/scripts/fuzz_opt.py
+++ b/scripts/fuzz_opt.py
@@ -315,6 +315,8 @@ INITIAL_CONTENTS_IGNORE = [
'multi-memory-lowering-import-error.wast',
# the fuzzer does not support typed continuations
'typed_continuations.wast',
+ # New EH implementation is in progress
+ 'exception-handling.wast',
]