summaryrefslogtreecommitdiff
path: root/auto_update_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-xauto_update_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py
index 4fbe7f8ce..273f05cb6 100755
--- a/auto_update_tests.py
+++ b/auto_update_tests.py
@@ -12,7 +12,7 @@ for asm in sorted(os.listdir('test')):
open(os.path.join('test', wasm), 'w').write(actual)
for wasm in sorted(os.listdir('test')):
- if wasm.endswith('.wast'):
+ 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()