diff options
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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[:] |