|
28 | 28 | from common import skip_if, needs_dylink, no_windows, no_mac, is_slow_test, parameterized
|
29 | 29 | from common import env_modify, with_env_modify, disabled, flaky, node_pthreads, also_with_wasm_bigint
|
30 | 30 | from common import read_file, read_binary, requires_v8, requires_node, requires_node_canary, compiler_for, crossplatform
|
31 |
| -from common import with_both_sjlj, also_with_standalone_wasm, can_do_standalone |
| 31 | +from common import with_both_sjlj, also_with_standalone_wasm, can_do_standalone, no_wasm64 |
32 | 32 | from common import NON_ZERO, WEBIDL_BINDER, EMBUILDER, PYTHON
|
33 | 33 | import clang_native
|
34 | 34 |
|
@@ -134,14 +134,6 @@ def decorated(f):
|
134 | 134 | return decorated
|
135 | 135 |
|
136 | 136 |
|
137 |
| -def no_wasm64(note=''): |
138 |
| - assert not callable(note) |
139 |
| - |
140 |
| - def decorated(f): |
141 |
| - return skip_if(f, 'is_wasm64', note) |
142 |
| - return decorated |
143 |
| - |
144 |
| - |
145 | 137 | def also_with_noderawfs(func):
|
146 | 138 | assert callable(func)
|
147 | 139 |
|
@@ -356,12 +348,6 @@ def is_sanitizing(args):
|
356 | 348 |
|
357 | 349 |
|
358 | 350 | class TestCoreBase(RunnerCore):
|
359 |
| - def is_wasm2js(self): |
360 |
| - return self.get_setting('WASM') == 0 |
361 |
| - |
362 |
| - def is_wasm64(self): |
363 |
| - return self.get_setting('MEMORY64') |
364 |
| - |
365 | 351 | # A simple check whether the compiler arguments cause optimization.
|
366 | 352 | def is_optimizing(self):
|
367 | 353 | return '-O' in str(self.emcc_args) and '-O0' not in self.emcc_args
|
|
0 commit comments