summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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