diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-25 20:31:21 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-25 20:31:21 -0500 |
commit | 714df6b655f5d5f7da33ef091f3c8c758549597b (patch) | |
tree | 51944758967814623e52fd9e81255b2a443b86c4 /auto_update_tests.py | |
parent | 0f7bffb6b66698d21cb2f44a4a5b7bbaa3acd59c (diff) | |
download | binaryen-714df6b655f5d5f7da33ef091f3c8c758549597b.tar.gz binaryen-714df6b655f5d5f7da33ef091f3c8c758549597b.tar.bz2 binaryen-714df6b655f5d5f7da33ef091f3c8c758549597b.zip |
finish updating .s tests
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index c3b9742b5..566967640 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', 'offset-folding.s']: continue + if s in ['inline-asm.s', 'userstack.s', 'offset-folding.s', 'legalize.s']: continue print '..', s wasm = s.replace('.s', '.wast') full = os.path.join('test', 'dot_s', s) |