summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-08-20 17:16:44 -0700
committerGitHub <noreply@github.com>2024-08-20 17:16:44 -0700
commit435eeead73cf02a6fb5bc7d7a36dd45b8d700cb2 (patch)
treed079d92a6d934175d6f1b276deb0ef78d14d058b /src/tools
parent340ad71810484c279b1a36a9a7e458c9b18855b9 (diff)
downloadbinaryen-435eeead73cf02a6fb5bc7d7a36dd45b8d700cb2.tar.gz
binaryen-435eeead73cf02a6fb5bc7d7a36dd45b8d700cb2.tar.bz2
binaryen-435eeead73cf02a6fb5bc7d7a36dd45b8d700cb2.zip
Add the upstream spec testsuite as a submodule (#6853)
Run the upstream tests by default, except for a large list of them that do not successfully run. Remove the local version of those that do successfully run where the local version is entirely subsumed by the upstream version.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/wasm2js.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/wasm2js.cpp b/src/tools/wasm2js.cpp
index feba358c4..286f89890 100644
--- a/src/tools/wasm2js.cpp
+++ b/src/tools/wasm2js.cpp
@@ -809,6 +809,9 @@ void AssertionEmitter::emit() {
// Skip other action assertions.
continue;
}
+ } else if (std::get_if<AssertModule>(assn)) {
+ // Skip module assertions
+ continue;
} else {
Fatal() << "unsupported assertion on line " << script[i].line;
}