Update the spec reference testsuite submodule (#3450)
* Update the spec reference testsuite submodule This commit brings in recent updates to the spec test suite. Most of the changes here were already fixed in `wasmparser` with some tweaks to esoteric modules, but Wasmtime also gets a bug fix where where import matching for the size of tables/memories is based on the current runtime size of the table/memory rather than the original type of the table/memory. This means that during type matching the actual value is consulted for its size rather than using the minimum size listed in its type. * Fix now-missing directories in build script
This commit is contained in:
12
build.rs
12
build.rs
@@ -24,8 +24,6 @@ fn main() -> anyhow::Result<()> {
|
||||
|
||||
with_test_module(&mut out, "misc", |out| {
|
||||
test_directory(out, "tests/misc_testsuite", strategy)?;
|
||||
test_directory_module(out, "tests/misc_testsuite/bulk-memory-operations", strategy)?;
|
||||
test_directory_module(out, "tests/misc_testsuite/reference-types", strategy)?;
|
||||
test_directory_module(out, "tests/misc_testsuite/multi-memory", strategy)?;
|
||||
test_directory_module(out, "tests/misc_testsuite/module-linking", strategy)?;
|
||||
test_directory_module(out, "tests/misc_testsuite/simd", strategy)?;
|
||||
@@ -40,16 +38,6 @@ fn main() -> anyhow::Result<()> {
|
||||
// out.
|
||||
if spec_tests > 0 {
|
||||
test_directory_module(out, "tests/spec_testsuite/proposals/simd", strategy)?;
|
||||
test_directory_module(
|
||||
out,
|
||||
"tests/spec_testsuite/proposals/reference-types",
|
||||
strategy,
|
||||
)?;
|
||||
test_directory_module(
|
||||
out,
|
||||
"tests/spec_testsuite/proposals/bulk-memory-operations",
|
||||
strategy,
|
||||
)?;
|
||||
test_directory_module(out, "tests/spec_testsuite/proposals/memory64", strategy)?;
|
||||
} else {
|
||||
println!(
|
||||
|
||||
Reference in New Issue
Block a user