summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-12-29 19:50:18 -0500
committerAlon Zakai <alonzakai@gmail.com>2015-12-29 22:16:58 -0800
commita372e22c7a54bcfce2b485f57b38c0eafee8ee7a (patch)
tree2ba9d27ecb529f606fa6a9532a714b2e7292c1b9
parent782b708984d38fdcd2191f65236227cf6ea11702 (diff)
downloadbinaryen-a372e22c7a54bcfce2b485f57b38c0eafee8ee7a.tar.gz
binaryen-a372e22c7a54bcfce2b485f57b38c0eafee8ee7a.tar.bz2
binaryen-a372e22c7a54bcfce2b485f57b38c0eafee8ee7a.zip
more check.py explanations
-rwxr-xr-xcheck.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/check.py b/check.py
index 21d3d504a..c1e057caf 100755
--- a/check.py
+++ b/check.py
@@ -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)