We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a34f35 commit e02e320Copy full SHA for e02e320
test/parallel/test-wasm-simd-global.js
test/wpt/test-wasm-jsapi.mjs
@@ -17,5 +17,15 @@ try {
17
if (supportsSimd) {
18
const runner = new WPTRunner('wasm/jsapi');
19
runner.setFlags(['--experimental-wasm-modules']);
20
+
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
30
runner.runJsTests();
31
}
0 commit comments