@@ -9210,7 +9210,7 @@ def test_closure_full_js_library(self, args):
92109210
92119211 @also_with_wasm64
92129212 def test_closure_webgpu(self):
9213- if config.FROZEN_CACHE and self.get_setting('MEMORY64' ):
9213+ if config.FROZEN_CACHE and self.is_wasm64( ):
92149214 # CI configuration doesn't run `embuilder` with wasm64 on ports
92159215 self.skipTest("test doesn't work with frozen cache")
92169216 # Emdawnwebgpu uses C++ internally, so we use a cpp file here so emcc defaults to linking C++.
@@ -11920,7 +11920,7 @@ def test_standalone_syscalls(self):
1192011920 'dylink': (['-sMAIN_MODULE=2'],),
1192111921 })
1192211922 def test_emdawnwebgpu_link_test(self, args):
11923- if config.FROZEN_CACHE and (self.get_setting('MEMORY64' ) or '-sMAIN_MODULE=2' in args):
11923+ if config.FROZEN_CACHE and (self.is_wasm64( ) or '-sMAIN_MODULE=2' in args):
1192411924 # CI configuration doesn't run `embuilder` with wasm64 on ports
1192511925 self.skipTest("test doesn't work with frozen cache")
1192611926 self.emcc(test_file('test_emdawnwebgpu_link_test.cpp'), ['--use-port=emdawnwebgpu', '-sASYNCIFY'] + args)
@@ -12466,7 +12466,7 @@ def test_split_module(self, customLoader, jspi, opt):
1246612466 wasm_split_run = [wasm_split, '-g',
1246712467 '--enable-mutable-globals', '--enable-bulk-memory', '--enable-nontrapping-float-to-int',
1246812468 '--export-prefix=%', 'test_split_module.wasm.orig', '-o1', 'primary.wasm', '-o2', 'secondary.wasm', '--profile=profile.data']
12469- if self.get_setting('MEMORY64' ):
12469+ if self.is_wasm64( ):
1247012470 wasm_split_run += ['--enable-memory64']
1247112471 self.run_process(wasm_split_run)
1247212472
0 commit comments