diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-07 17:41:40 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-07 17:42:51 -0800 |
commit | ea3a9db4a071292d4e976ef36f4c197a9e8a5fea (patch) | |
tree | 13c0e7e9d51b168597ebd376dda650ef8c334049 /check.py | |
parent | a94f9938701920fe11c4f21a875ed3174ff7e9ba (diff) | |
download | binaryen-ea3a9db4a071292d4e976ef36f4c197a9e8a5fea.tar.gz binaryen-ea3a9db4a071292d4e976ef36f4c197a9e8a5fea.tar.bz2 binaryen-ea3a9db4a071292d4e976ef36f4c197a9e8a5fea.zip |
disable wasm2asm for now; it was never fully functional anyhow, and there is too much flux
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -406,6 +406,7 @@ for t in spec_tests: # compare all the outputs to the expected output check_expected(actual, os.path.join('test', 'spec', 'expected-output', os.path.basename(wast) + '.log')) +''' XXX disable wasm2asm for now, too much flux print '\n[ checking wasm2asm testcases... ]\n' for wasm in tests + [os.path.join('spec', name) for name in ['address.wast']]:#spec_tests: @@ -440,6 +441,7 @@ for wasm in tests + [os.path.join('spec', name) for name in ['address.wast']]:#s out, err = proc.communicate() assert proc.returncode == 0 fail_if_not_contained(err, 'Successfully compiled asm.js code') +''' print '\n[ checking .s testcases... ]\n' |