diff options
author | Alon Zakai <azakai@google.com> | 2020-08-17 19:13:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 19:13:42 -0700 |
commit | 77fe6ded258ce37bd3ea78fd43c8bc0ef639682b (patch) | |
tree | be2c33aa32f9063cdf6d29a64d0f0084e883f8cf /check.py | |
parent | f5a8bfd25c83dc05d48cbc525c5e8ec2deb246b3 (diff) | |
download | binaryen-77fe6ded258ce37bd3ea78fd43c8bc0ef639682b.tar.gz binaryen-77fe6ded258ce37bd3ea78fd43c8bc0ef639682b.tar.bz2 binaryen-77fe6ded258ce37bd3ea78fd43c8bc0ef639682b.zip |
Remove asm2wasm (#3042)
Now that fastcomp has been removed from Emscripten, there is no need
for the asm2wasm tool which it used to compile fastcomp's asm.js output
to wasm.
See emscripten-core/emscripten#11860
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -21,7 +21,6 @@ import sys import unittest from collections import OrderedDict -from scripts.test import asm2wasm from scripts.test import binaryenjs from scripts.test import lld from scripts.test import shared @@ -354,8 +353,6 @@ def run_unittest(): TEST_SUITES = OrderedDict([ ('help-messages', run_help_tests), ('wasm-opt', wasm_opt.test_wasm_opt), - ('asm2wasm', asm2wasm.test_asm2wasm), - ('asm2wasm-binary', asm2wasm.test_asm2wasm_binary), ('wasm-dis', run_wasm_dis_tests), ('crash', run_crash_tests), ('dylink', run_dylink_tests), |