Skip to content

Commit ad27b57

Browse files
authored
[test] Remove no-longer-needed v8 flags. NFC (#25683)
1 parent d3bd469 commit ad27b57

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

test/test_core.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ def decorated(self, *args, **kwargs):
141141
self.skipTest('SIMD tests are too slow with -O3 in the new LLVM pass manager, https://github.com/emscripten-core/emscripten/issues/13427')
142142
self.cflags.append('-msimd128')
143143
self.cflags.append('-fno-lax-vector-conversions')
144-
self.v8_args.append('--experimental-wasm-simd')
145144
return func(self, *args, **kwargs)
146145
return decorated
147146

test/test_other.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13411,7 +13411,6 @@ def test_unsafe_optimizations(self):
1341113411

1341213412
@requires_v8
1341313413
def test_extended_const(self):
13414-
self.v8_args += ['--experimental-wasm-extended-const']
1341513414
# Export at least one global so that we exercise the parsing of the global section.
1341613415
self.do_runf('hello_world.c', cflags=['-sEXPORTED_FUNCTIONS=_main,___stdout_used', '-mextended-const', '-sMAIN_MODULE=2'])
1341713416
wat = self.get_wasm_text('hello_world.wasm')
@@ -13477,10 +13476,6 @@ def test_jspi_code_size(self):
1347713476

1347813477
self.run_process([EMXX, 'main.cpp', '-sASYNCIFY=2'] + shared_args)
1347913478

13480-
# enable stack switching and other relevant features (like reference types
13481-
# for the return value of externref)
13482-
self.v8_args.append('--experimental-wasm-stack-switching')
13483-
1348413479
self.assertContained(expected, self.run_js('a.out.js'))
1348513480
stack_switching_size = os.path.getsize('a.out.wasm')
1348613481

0 commit comments

Comments
 (0)