Skip to content

Commit a5a43fb

Browse files
committed
switch modules from all to just nontrapping-fp
1 parent 070072e commit a5a43fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_other.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12859,7 +12859,9 @@ def test_split_module(self, customLoader, jspi):
1285912859
self.assertExists('profile.data')
1286012860

1286112861
wasm_split = os.path.join(building.get_binaryen_bin(), 'wasm-split')
12862-
wasm_split_run = [wasm_split, '-g', '-all', '--export-prefix=%', 'test_split_module.wasm.orig', '-o1', 'primary.wasm', '-o2', 'secondary.wasm', '--profile=profile.data']
12862+
wasm_split_run = [wasm_split, '-g',
12863+
'--enable-mutable-globals', '--enable-bulk-memory', '--enable-nontrapping-float-to-int',
12864+
'--export-prefix=%', 'test_split_module.wasm.orig', '-o1', 'primary.wasm', '-o2', 'secondary.wasm', '--profile=profile.data']
1286312865
if jspi:
1286412866
wasm_split_run += ['--jspi', '--enable-reference-types']
1286512867
self.run_process(wasm_split_run)

0 commit comments

Comments
 (0)