Skip to content

Commit 643faf0

Browse files
committed
test: skip mutable-global-sharing wpt on big-endian platforms
1 parent e02e320 commit 643faf0

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

test/wpt/status/wasm/jsapi.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
]
1313
}
1414
},
15+
"esm-integration/mutable-global-sharing.tentative.any.js": {
16+
"skip": "v128 SIMD globals broken on big-endian platforms due to a V8 bug"
17+
},
1518
"esm-integration/v128-tdz.tentative.any.js": {
1619
"skip": "v128 undefined Wasm bindings not yet supported in V8"
1720
},

test/wpt/test-wasm-jsapi.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,5 @@ if (supportsSimd) {
1818
const runner = new WPTRunner('wasm/jsapi');
1919
runner.setFlags(['--experimental-wasm-modules']);
2020

21-
// v128 SIMD globals are broken on s390x due to a V8 big-endian bug.
22-
if (process.arch === 's390x') {
23-
for (const spec of runner.specs) {
24-
if (spec.filename === 'esm-integration/mutable-global-sharing.tentative.any.js') {
25-
spec.skipReasons.push('v128 SIMD globals broken on s390x due to V8 big-endian bug');
26-
}
27-
}
28-
}
29-
3021
runner.runJsTests();
3122
}

0 commit comments

Comments
 (0)