summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-12-21 13:42:35 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-12-21 13:42:35 -0800
commitbdb9bf5a59073ca6ff45cb851fa85ee67fefe22f (patch)
tree350af4dc9758677389461f5c5adeb22ba5ed597a
parentb860ac84f6fb286793c9dfcbc4fd767de9cbfa24 (diff)
downloadbinaryen-bdb9bf5a59073ca6ff45cb851fa85ee67fefe22f.tar.gz
binaryen-bdb9bf5a59073ca6ff45cb851fa85ee67fefe22f.tar.bz2
binaryen-bdb9bf5a59073ca6ff45cb851fa85ee67fefe22f.zip
reformat blacklist for experimental wasts
-rwxr-xr-xcheck.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/check.py b/check.py
index d9280f54e..d24c5fb8c 100755
--- a/check.py
+++ b/check.py
@@ -215,7 +215,12 @@ for t in spec_tests:
print '\n[ checking binaryen-shell experimental testcases... ]\n'
if len(requested) == 0:
- BLACKLIST = ['call.wast', 'cfg-stackify.wast', 'inline-asm.wast', 'permute.wast', 'switch.wast', 'vtable.wast']
+ BLACKLIST = ['call.wast', # bad indirect_call
+ 'cfg-stackify.wast', # bad and on import with no return value
+ 'inline-asm.wast',
+ 'permute.wast',
+ 'switch.wast',
+ 'vtable.wast']
experimental_tests = [os.path.join('experimental', 'prototype-wasmate', 'test', 'expected-output', t) for t in sorted(os.listdir(os.path.join('test', 'experimental', 'prototype-wasmate', 'test', 'expected-output'))) if t not in BLACKLIST]
else:
experimental_tests = requested[:]