diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 17:56:23 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-04-18 17:56:23 -0700 |
commit | eb50dce005ad4ca10aaad7d15aa7a518d39ae887 (patch) | |
tree | 384eb285911224c5fb80f96aaa3c205a9963536f /auto_update_tests.py | |
parent | 684ed50648fd45199edca7532c743b16a7050695 (diff) | |
parent | 237cb832673ba6478bcd9bfa395f2f2c07e97a9d (diff) | |
download | binaryen-eb50dce005ad4ca10aaad7d15aa7a518d39ae887.tar.gz binaryen-eb50dce005ad4ca10aaad7d15aa7a518d39ae887.tar.bz2 binaryen-eb50dce005ad4ca10aaad7d15aa7a518d39ae887.zip |
Merge pull request #364 from WebAssembly/updates
Spec test updates
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'): |