summaryrefslogtreecommitdiff
path: root/crates/wasm-testsuite
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-11-13 00:49:19 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-11-13 00:49:19 +0100
commit8485ad1af9090d47a5abb757d7f3922f9a31ff7f (patch)
tree8cb0cfb16287cc341369de0c52703853f4cb5f01 /crates/wasm-testsuite
parent0c1781fc62037181ae9698840fadb1d4578d2395 (diff)
chore: update deps
note: wasmparser now uses btree's Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/wasm-testsuite')
m---------crates/wasm-testsuite/data0
-rw-r--r--crates/wasm-testsuite/lib.rs4
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/wasm-testsuite/data b/crates/wasm-testsuite/data
-Subproject cbde6d5f26ba12d4f455b65bd0648cdba4d95f1
+Subproject eeb6dac81be81151da0958ed955aba91230c1f2
diff --git a/crates/wasm-testsuite/lib.rs b/crates/wasm-testsuite/lib.rs
index 2a2892c..8838fd2 100644
--- a/crates/wasm-testsuite/lib.rs
+++ b/crates/wasm-testsuite/lib.rs
@@ -23,7 +23,7 @@ struct CustomTests;
///
/// Includes all proposals from <https://github.com/WebAssembly/testsuite/tree/master/proposals>
#[rustfmt::skip]
-pub const PROPOSALS: &[&str] = &["annotations", "exception-handling", "extended-const", "function-references", "gc", "memory64", "multi-memory", "relaxed-simd", "tail-call", "threads", "custom-page-sizes"];
+pub const PROPOSALS: &[&str] = &["annotations", "exception-handling", "extended-const", "function-references", "gc", "memory64", "multi-memory", "relaxed-simd", "tail-call", "threads", "custom-page-sizes", "wide-arithmetic"];
/// List of all tests that apply to the MVP (V1) spec
/// Note that the tests are still for the latest spec, so the latest version of Wast is used.
@@ -80,7 +80,7 @@ mod tests {
let proposal = proposal.split('/').nth(1).unwrap();
unique_proposals.insert(proposal.to_owned());
- assert!(PROPOSALS.contains(&proposal));
+ assert!(PROPOSALS.contains(&proposal), "Missing proposal: {}", proposal);
}
}
}