diff options
author | Thomas Lively <tlively@google.com> | 2024-06-18 18:34:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 18:34:53 -0700 |
commit | 02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b (patch) | |
tree | 6ba496717a64c8a5e127f6a8fc8e628d0bc46300 /scripts/test | |
parent | 2df678e4670517eaac40d1d2d9541d3b706b324b (diff) | |
download | binaryen-02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b.tar.gz binaryen-02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b.tar.bz2 binaryen-02c4c3cd43a2033a7fd2f5c75f6d92ac9b80bb4b.zip |
Re-enable binary.wast spec test (#6677)
Fix the wast parser to accept IDs on quoted modules, remove tests that are
invalidated by the multimemory proposal, and add validation that the total
number of variables in a function is less than 2^32 and that the code section is
present if there is a non-empty function section.
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/shared.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 0e7062437..665ad6b7c 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -417,9 +417,6 @@ SPEC_TESTS_TO_SKIP = [ 'type.wast', 'unreached-invalid.wast', - # WAST parser error - 'binary.wast', - # Test invalid 'elem.wast', ] |