diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 16:09:05 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 16:09:05 -0700 |
commit | 650928c4c4877186134556ae684938662d9e23ec (patch) | |
tree | 7161c053594a67e2e008b7d20b332bb3967738a6 /auto_update_tests.py | |
parent | d06406cc9d05e5654a3df73ab1d09252c774aadb (diff) | |
download | binaryen-650928c4c4877186134556ae684938662d9e23ec.tar.gz binaryen-650928c4c4877186134556ae684938662d9e23ec.tar.bz2 binaryen-650928c4c4877186134556ae684938662d9e23ec.zip |
disable wasm2asm tests in auto_update_tests.py as well, not just in check.py
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index 8cd2651ee..e0ae3a7a7 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -40,6 +40,7 @@ for dot_s_dir in ['dot_s', 'llvm_autogenerated']: expected_file = os.path.join('test', dot_s_dir, wasm) open(expected_file, 'w').write(actual) +''' for wasm in ['address.wast']:#os.listdir(os.path.join('test', 'spec')): if wasm.endswith('.wast'): print '..', wasm @@ -50,6 +51,7 @@ for wasm in ['address.wast']:#os.listdir(os.path.join('test', 'spec')): assert err == '', 'bad err:' + err expected_file = os.path.join('test', asm) open(expected_file, 'w').write(actual) +''' for t in sorted(os.listdir(os.path.join('test', 'print'))): if t.endswith('.wast'): |