Skip to content

Commit

Permalink
wasmtime: Enable Relaxed SIMD testsuite for RISC-V (bytecodealliance#…
Browse files Browse the repository at this point in the history
…6972)

* wasmtime: Enable `relaxed_simd` testsuite for RISC-V

* wasmtime: Add comment on `bnot_lowering` test
  • Loading branch information
afonso360 authored and eduardomourar committed Sep 6, 2023
1 parent 3a060e8 commit ee929b7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool {
}

"riscv64" => {
if testsuite.contains("relaxed_simd") {
return true;
}

let known_failure = ["issue_3327_bnot_lowering"].contains(&testname);

known_failure
// This test case is disabled because it relies on `fvpromote_low`
// not flipping the sign bit of the input when it is a NaN. This
// is allowed by the spec. It's worth keeping the testcase as is
// since it is stressing a specific codegen bug in another arch.
//
// See #6961 for more details
testname == "issue_3327_bnot_lowering"
}

_ => false,
Expand Down

0 comments on commit ee929b7

Please sign in to comment.