Skip to content

Commit 3186b15

Browse files
committed
Enable test_sse2 under wasm64. NFC
1 parent 3a3fea0 commit 3186b15

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6518,12 +6518,13 @@ def test_sse1(self):
65186518
# Tests invoking the SIMD API via x86 SSE2 emmintrin.h header (_mm_x() functions)
65196519
@wasm_simd
65206520
@requires_native_clang
6521-
@no_wasm64('https://github.com/llvm/llvm-project/issues/57577')
65226521
@no_safe_heap('has unaligned 64-bit operations in wasm')
65236522
@is_slow_test
65246523
@no_ubsan('https://github.com/emscripten-core/emscripten/issues/19688')
65256524
@no_asan('local count too large')
65266525
def test_sse2(self):
6526+
if self.is_wasm64():
6527+
self.require_node_canary()
65276528
src = test_file('sse/test_sse2.cpp')
65286529
self.run_process([shared.CLANG_CXX, src, '-msse2', '-Wno-argument-outside-range', '-o', 'test_sse2', '-D_CRT_SECURE_NO_WARNINGS=1'] + clang_native.get_clang_native_args(), stdout=PIPE)
65296530
native_result = self.run_process('./test_sse2', stdout=PIPE).stdout

0 commit comments

Comments
 (0)