diff options
Diffstat (limited to 'scripts/test/wasm2js.py')
-rw-r--r-- | scripts/test/wasm2js.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py index 5ae146d19..5ddab0b2b 100644 --- a/scripts/test/wasm2js.py +++ b/scripts/test/wasm2js.py @@ -18,8 +18,11 @@ from scripts.test import shared from scripts.test import support tests = shared.get_tests(shared.options.binaryen_test) +# memory64 is not supported in wasm2js yet (but may be with BigInt eventually). +tests = [t for t in tests if '64.wast' not in t] spec_tests = shared.options.spec_tests spec_tests = [t for t in spec_tests if '.fail' not in t] +spec_tests = [t for t in spec_tests if '64.wast' not in t] wasm2js_tests = shared.get_tests(shared.get_test_dir('wasm2js'), ['.wast']) assert_tests = ['wasm2js.wast.asserts'] # These tests exercise functionality not supported by wasm2js |