summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-05-13 13:31:45 -0700
committerAlon Zakai <alonzakai@gmail.com>2016-05-13 15:37:19 -0700
commite2250bcb5e35c2382b9bc7fd9da8b7a0efe9a86f (patch)
tree0c6d7dd104fb17f7f4b6bcb2d418940196a4e66e
parent7a2073cad4e532be94d954a00611762630674da2 (diff)
downloadbinaryen-e2250bcb5e35c2382b9bc7fd9da8b7a0efe9a86f.tar.gz
binaryen-e2250bcb5e35c2382b9bc7fd9da8b7a0efe9a86f.tar.bz2
binaryen-e2250bcb5e35c2382b9bc7fd9da8b7a0efe9a86f.zip
remove wasm2asm stuff from auto_update_tests
-rwxr-xr-xauto_update_tests.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py
index 5fa106747..b707e7f36 100755
--- a/auto_update_tests.py
+++ b/auto_update_tests.py
@@ -17,13 +17,6 @@ for asm in sorted(os.listdir('test')):
actual, err = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
open(os.path.join('test', wasm), 'w').write(actual)
-for wasm in sorted(os.listdir('test')):
- if wasm.endswith('.wast') and os.path.basename(wasm) not in ['kitchen_sink.wast']: # i64s in kitchen_sink
- print '..', wasm
- asm = wasm.replace('.wast', '.2asm.js')
- actual, err = subprocess.Popen([os.path.join('bin', 'wasm2asm'), os.path.join('test', wasm)], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
- open(os.path.join('test', asm), 'w').write(actual)
-
for dot_s_dir in ['dot_s', 'llvm_autogenerated']:
for s in sorted(os.listdir(os.path.join('test', dot_s_dir))):
if not s.endswith('.s'): continue