aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runner.py')
-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):