Skip to content

Commit da36bc9

Browse files
LiedtkeV8-internal LUCI CQ
authored andcommitted
[test][wasm] Skip relaxed SIMD tests on arm hardware
Some of the relaxed SIMD instructions produce different values than the expected ones. Skip the test case for now. Bug: 427134596 Change-Id: Ic4121c4b502cc50b84e54b9cc93e71b81f2b05c1 Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/8469256 Commit-Queue: Carl Smith <[email protected]> Auto-Submit: Matthias Liedtke <[email protected]> Reviewed-by: Carl Smith <[email protected]>
1 parent d722ef1 commit da36bc9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Tests/FuzzilliTests/WasmTests.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1769,6 +1769,11 @@ class WasmFoundationTests: XCTestCase {
17691769
}
17701770

17711771
func testWasmSimd128() throws {
1772+
#if arch(arm64)
1773+
// TODO(mdanylo): Investigate and adapt the expectations if behavior is correct.
1774+
throw XCTSkip("Relaxed SIMD tests currently failing on arm64, skipping")
1775+
#endif
1776+
17721777
let runner = try GetJavaScriptExecutorOrSkipTest()
17731778
let liveTestConfig = Configuration(logLevel: .error, enableInspection: true)
17741779
let fuzzer = makeMockFuzzer(config: liveTestConfig, environment: JavaScriptEnvironment())

0 commit comments

Comments
 (0)