mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-24 00:20:21 +00:00
LibWasm: Ignore tests that check that we don't support 2+ memories
Since we support the multi-memory proposal, we should skip tests that validate that we have only one memory. Once multi-memory gets included in the main WebAssembly specification (and the testsuite is updated), we can revert this commit.
This commit is contained in:
parent
9da3e29818
commit
3a0f80bbae
Notes:
sideshowbarker
2024-07-16 21:42:29 +09:00
Author: https://github.com/dzfrias Commit: https://github.com/LadybirdBrowser/ladybird/commit/3a0f80bbae Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/614
1 changed files with 5 additions and 0 deletions
|
@ -314,6 +314,11 @@ _test.skip = test.skip;
|
|||
|
||||
|
||||
def gen_invalid(invalid: AssertInvalid, ctx: Context):
|
||||
# TODO: Remove this once the multiple memories proposal is standardized.
|
||||
# We support the multiple memories proposal, so spec-tests that check that
|
||||
# we don't do not make any sense to include right now.
|
||||
if invalid.message == "multiple memories":
|
||||
return
|
||||
if ctx.has_unclosed:
|
||||
print("});")
|
||||
ctx.has_unclosed = False
|
||||
|
|
Loading…
Reference in a new issue