Update spec test repo (#4974)

* Update spec test repo

Our submodule was accidentally reverted to an older commit as part
of #4271 and while it could be updated to as it was before I went ahead
and updated it to `main`.

* Update ignore directives and test multi-memory

* Update riscv ignores
This commit is contained in:
Alex Crichton
2022-09-28 12:04:17 -05:00
committed by GitHub
parent 83bb6fd4c8
commit 2ba604e406
4 changed files with 23 additions and 27 deletions

View File

@@ -21,14 +21,12 @@ fn run_wast(wast: &str, strategy: Strategy, pooling: bool) -> anyhow::Result<()>
}
let wast = Path::new(wast);
let simd = feature_found(wast, "simd");
let memory64 = feature_found(wast, "memory64");
let multi_memory = feature_found(wast, "multi-memory");
let threads = feature_found(wast, "threads");
let mut cfg = Config::new();
cfg.wasm_simd(simd)
.wasm_multi_memory(multi_memory)
cfg.wasm_multi_memory(multi_memory)
.wasm_threads(threads)
.wasm_memory64(memory64)
.cranelift_debug_verifier(true);