From 1b45938aadd6e03e9210d88436be9c393623fb42 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Fri, 4 Mar 2016 17:09:47 -0800 Subject: Make initial and max memory sizes be in pages instead of bytes The AST and everything that uses it treats the values as pages. Javascript continues to use bytes. This matches v8 and sexpr-wasm, and the consensus from live discussion and PR209 in the spec. --- check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'check.py') diff --git a/check.py b/check.py index 272e1394c..926282eab 100755 --- a/check.py +++ b/check.py @@ -354,7 +354,7 @@ for t in tests: print '\n[ checking binaryen-shell spec testcases... ]\n' if len(requested) == 0: - BLACKLIST = [] + BLACKLIST = ['i32.wast', 'i64.wast'] spec_tests = [os.path.join('spec', t) for t in sorted(os.listdir(os.path.join('test', 'spec'))) if t not in BLACKLIST] else: spec_tests = requested[:] -- cgit v1.2.3