summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-05 10:29:23 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-05 10:29:23 -0800
commitd16e8900cb98af97775e406c25d4a8b0c8c86039 (patch)
tree8823a93778674be034eaf7b6765817b67c3fb7b9 /check.py
parenta1b24a29d50d6e060adf1ffd97d406bc5d71f290 (diff)
downloadbinaryen-d16e8900cb98af97775e406c25d4a8b0c8c86039.tar.gz
binaryen-d16e8900cb98af97775e406c25d4a8b0c8c86039.tar.bz2
binaryen-d16e8900cb98af97775e406c25d4a8b0c8c86039.zip
more conversion fixes
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/check.py b/check.py
index 3ec0d6544..c428ec5ea 100755
--- a/check.py
+++ b/check.py
@@ -81,7 +81,8 @@ print '\n[ checking wasm-shell spec testcases... ]\n'
if len(requested) == 0:
#spec_tests = [] # XXX [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec')))]
- spec_tests = [os.path.join('spec', t + '.wast') for t in ['address', 'conversions']]
+ # 'address' : filed issue, test looks invalid
+ spec_tests = [os.path.join('spec', t + '.wast') for t in ['conversions']]
else:
spec_tests = requested[:]