diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-29 19:50:18 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-29 22:16:58 -0800 |
commit | a372e22c7a54bcfce2b485f57b38c0eafee8ee7a (patch) | |
tree | 2ba9d27ecb529f606fa6a9532a714b2e7292c1b9 | |
parent | 782b708984d38fdcd2191f65236227cf6ea11702 (diff) | |
download | binaryen-a372e22c7a54bcfce2b485f57b38c0eafee8ee7a.tar.gz binaryen-a372e22c7a54bcfce2b485f57b38c0eafee8ee7a.tar.bz2 binaryen-a372e22c7a54bcfce2b485f57b38c0eafee8ee7a.zip |
more check.py explanations
-rwxr-xr-x | check.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -236,7 +236,9 @@ print '\n[ checking .s testcases... ]\n' 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', 'offset-folding.s',]: continue + if s in ['inline-asm.s', # what is this? + 'offset-folding.s' # unresolved symbol x + ]: continue print '..', s wasm = s.replace('.s', '.wast') full = os.path.join('test', 'dot_s', s) |