diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-29 19:47:07 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-29 22:16:58 -0800 |
commit | 50223b341b38c35034821250683635d1fd6a4f76 (patch) | |
tree | a19ecad86a2dcc9f186be1e99f46da680b93ad7c | |
parent | c17a9376713fc4aaef9f3ff40b6a12bab0153ea0 (diff) | |
download | binaryen-50223b341b38c35034821250683635d1fd6a4f76.tar.gz binaryen-50223b341b38c35034821250683635d1fd6a4f76.tar.bz2 binaryen-50223b341b38c35034821250683635d1fd6a4f76.zip |
update check.py disabled test reasons
-rwxr-xr-x | check.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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: |