aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-07-20 21:49:44 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-07-20 21:49:44 -0700
commitdd81be6e67fc3ce77450b28714fb0dc2343dbabf (patch)
tree083f58f8dba40990cf1ab782d36aedd917eb270b
parent91e447b1ad9da3053c39ab6ff20dd32153afc6ef (diff)
add more outliner testing
-rwxr-xr-xtests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 521d59ad..c04ced48 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -10855,7 +10855,7 @@ f.close()
if size > 100: ret[curr] = size
return ret
- for outlining_limit in [5000, 0]:
+ for outlining_limit in [1000, 5000, 0]:
Popen([PYTHON, EMCC, src] + libs + ['-o', 'test.js', '-O2', '-g3', '-s', 'OUTLINING_LIMIT=%d' % outlining_limit] + args).communicate()
assert os.path.exists('test.js')
for engine in JS_ENGINES:
@@ -10871,7 +10871,7 @@ f.close()
test('zlib', path_from_root('tests', 'zlib', 'example.c'),
self.get_library('zlib', os.path.join('libz.a'), make_args=['libz.a']),
open(path_from_root('tests', 'zlib', 'ref.txt'), 'r').read(),
- { 5000: (800, 1100), 0: (1500, 1800) },
+ { 1000: (300, 500), 5000: (800, 1100), 0: (1500, 1800) },
args=['-I' + path_from_root('tests', 'zlib')], suffix='c')
def test_symlink(self):