summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/check.py b/check.py
index 44593de81..21d3d504a 100755
--- a/check.py
+++ b/check.py
@@ -180,10 +180,10 @@ for t in spec_tests:
print '\n[ checking binaryen-shell experimental testcases... ]\n'
if len(requested) == 0:
- BLACKLIST = ['call.wast', # bad indirect_call
- 'cfg-stackify.wast', # bad and on import with no return value
- 'inline-asm.wast',
- 'switch.wast', # bad tableswitch
+ BLACKLIST = ['call.wast', # bad indirect_call, no type
+ 'cfg-stackify.wast', # call an import $ which no return value, but in a context with a return value
+ 'inline-asm.wast', # there is a (foo ..) s-expression block, perhaps inline asm? not a valid s-expression
+ 'switch.wast', # bad tableswitch, no (table ..) inside it
]
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: