From 5734b870a9386ecb538ac87bdb94c84f2ee17607 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 19 Jun 2025 17:01:46 +0000 Subject: [PATCH] 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. --- test/es-module/test-esm-wasm.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/es-module/test-esm-wasm.mjs b/test/es-module/test-esm-wasm.mjs index dcd9d9ab5435c4..5a3101fc7594f6 100644 --- a/test/es-module/test-esm-wasm.mjs +++ b/test/es-module/test-esm-wasm.mjs @@ -70,7 +70,7 @@ describe('ESM: WASM modules', { concurrency: !process.env.TEST_PARALLEL }, () => [ 'import { strictEqual, deepStrictEqual, ok } from "node:assert";', - // SIMD is not supported on rhel8-ppc64le + // WASM SIMD is not supported on older architectures such as IBM Power8 'let wasmExports;', 'try {', ` wasmExports = await import(${JSON.stringify(fixtures.fileURL('es-modules/globals.wasm'))});`,