summaryrefslogtreecommitdiff
path: root/auto_update_tests.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-12-23 09:44:45 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-12-23 09:44:45 -0800
commita009c9c935c732c357f73358630bd1c55e4a87a9 (patch)
treef21d0a2864daaa246ea59165656b16d083dc86c4 /auto_update_tests.py
parenta79329fbe135bab9a319fd3afc911620b12f0124 (diff)
downloadbinaryen-a009c9c935c732c357f73358630bd1c55e4a87a9.tar.gz
binaryen-a009c9c935c732c357f73358630bd1c55e4a87a9.tar.bz2
binaryen-a009c9c935c732c357f73358630bd1c55e4a87a9.zip
s2wasm const parsing fixes
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 2e325ed94..c3b9742b5 100755
--- a/auto_update_tests.py
+++ b/auto_update_tests.py
@@ -29,7 +29,7 @@ for t in sorted(os.listdir('test')):
for s in sorted(os.listdir(os.path.join('test', 'dot_s'))) + sorted(os.listdir(os.path.join('test', 'experimental', 'prototype-wasmate', 'test'))):
if not s.endswith('.s'): continue
- if s in ['inline-asm.s', 'userstack.s']: continue
+ if s in ['inline-asm.s', 'userstack.s', 'offset-folding.s']: continue
print '..', s
wasm = s.replace('.s', '.wast')
full = os.path.join('test', 'dot_s', s)