summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-05 15:39:35 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-05 15:39:35 -0800
commitb3ee570f3f513e580958e020806df5b014c8b7c0 (patch)
tree1ec8ff49e90e894cc452431db66f5981c6a93e9e /check.py
parent75e6a46d07ab4a641c2c5676e5276bab014555aa (diff)
downloadbinaryen-b3ee570f3f513e580958e020806df5b014c8b7c0.tar.gz
binaryen-b3ee570f3f513e580958e020806df5b014c8b7c0.tar.bz2
binaryen-b3ee570f3f513e580958e020806df5b014c8b7c0.zip
unnamed naming fixes
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index ef6b97a67..72a27ea3b 100755
--- a/check.py
+++ b/check.py
@@ -83,7 +83,7 @@ if len(requested) == 0:
#spec_tests = [] # XXX [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec')))]
# 'address' : filed issue, test looks invalid
# 'exports' : has a "return" https://github.com/WebAssembly/spec/issues/164
- spec_tests = [os.path.join('spec', t + '.wast') for t in ['conversions', 'endianness', 'f32_cmp', 'f32', 'f64_cmp', 'f64']]
+ spec_tests = [os.path.join('spec', t + '.wast') for t in ['conversions', 'endianness', 'f32_cmp', 'f32', 'f64_cmp', 'f64', 'float_exprs', 'forward']]
else:
spec_tests = requested[:]