Skip to content

Commit ac6b822

Browse files
richardlauaduh95
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 <ethan@arrowood.dev> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent 28bf6ed commit ac6b822

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)