diff options
-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) |