Skip to content

Commit 8eec789

Browse files
richardlauRafaelGSS
authored andcommitted
test: correct SIMD support comment
The comment in the test file stated that: "SIMD is not supported on rhel8-ppc64le" This is incorrect -- WASM SIMD support is dependent on the available instructions, not the operating system. So it is more correct to say that WASM SIMD is not supported on IBM Power8 architecture. PR-URL: #58767 Reviewed-By: Ethan Arrowood <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
1 parent a0b1378 commit 8eec789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/es-module/test-esm-wasm.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () =>
7070
[
7171
'import { strictEqual, deepStrictEqual, ok } from "node:assert";',
7272

73-
// SIMD is not supported on rhel8-ppc64le
73+
// WASM SIMD is not supported on older architectures such as IBM Power8
7474
'let wasmExports;',
7575
'try {',
7676
` wasmExports = await import(${JSON.stringify(fixtures.fileURL('es-modules/globals.wasm'))});`,

0 commit comments

Comments
 (0)