Skip to content

Commit

Permalink
Update the WebAssembly spec testsuite (bytecodealliance#4160)
Browse files Browse the repository at this point in the history
Copyright (c) 2022, Arm Limited.
  • Loading branch information
akirilov-arm authored May 18, 2022
1 parent e898cb7 commit ca106e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ fn main() -> anyhow::Result<()> {
// Skip running spec_testsuite tests if the submodule isn't checked
// out.
if spec_tests > 0 {
test_directory_module(out, "tests/spec_testsuite/proposals/simd", strategy)?;
test_directory_module(out, "tests/spec_testsuite/proposals/memory64", strategy)?;
} else {
println!(
Expand Down Expand Up @@ -171,7 +170,7 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool {
"Cranelift" => match (testsuite, testname) {
// No simd support yet for s390x.
("simd", _) if platform_is_s390x() => return true,
("memory64", "simd") if platform_is_s390x() => return true,
_ if platform_is_s390x() && testname.starts_with("simd") => return true,
_ => {}
},
_ => panic!("unrecognized strategy"),
Expand Down
2 changes: 1 addition & 1 deletion tests/spec_testsuite
Submodule spec_testsuite updated 149 files

0 comments on commit ca106e9

Please sign in to comment.