Skip to content

Commit 6f4d86b

Browse files
authored
[test] Remove redundant calls to require_node_canary. NFC (#24465)
The wasm64 tests modes already require this. Split out from #24449
1 parent 0867958 commit 6f4d86b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/test_core.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6590,8 +6590,6 @@ def test_sse1(self, args):
65906590
'nontrapping': (['-mnontrapping-fptoint'],),
65916591
})
65926592
def test_sse2(self, args):
6593-
if self.is_wasm64():
6594-
self.require_node_canary()
65956593
src = test_file('sse/test_sse2.cpp')
65966594
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)
65976595
native_result = self.run_process('./test_sse2', stdout=PIPE).stdout
@@ -6633,8 +6631,6 @@ def test_ssse3(self):
66336631
@requires_x64_cpu
66346632
@is_slow_test
66356633
def test_sse4_1(self):
6636-
if self.is_wasm64():
6637-
self.require_node_canary()
66386634
src = test_file('sse/test_sse4_1.cpp')
66396635
# Run with inlining disabled to avoid slow LLVM behavior with lots of macro expanded loops inside a function body.
66406636
self.run_process([shared.CLANG_CXX, src, '-msse4.1', '-fno-inline-functions', '-Wno-argument-outside-range', '-o', 'test_sse4_1', '-D_CRT_SECURE_NO_WARNINGS=1'] + clang_native.get_clang_native_args(), stdout=PIPE)

0 commit comments

Comments
 (0)