diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-23 17:29:02 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-23 17:29:02 -0700 |
commit | 1ce927b5d318c16726bc250b09e603020d38420c (patch) | |
tree | 5ff9a0ab7b862de698bcab10e7be86b6a672f4ed /tests/runner.py | |
parent | 61e16a2bf7aa86a8432dde69819b66fbf3bf6d18 (diff) |
do not outline through an outline call
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index f6ac64a3..77bbf37b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11030,7 +11030,7 @@ f.close() if size > 100: ret[curr] = size return ret - for outlining_limit in [1000, 2000, 5000, 0]: + for outlining_limit in [500, 1000, 2000, 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') shutil.copyfile('test.js', '%d_test.js' % outlining_limit) @@ -11048,10 +11048,11 @@ f.close() self.get_library('zlib', os.path.join('libz.a'), make_args=['libz.a']), open(path_from_root('tests', 'zlib', 'ref.txt'), 'r').read(), { + 500: (340, 345), 1000: (380, 390), 2000: (395, 410), 5000: (800, 1100), - 0: (1500, 1800) + 0: (1500, 1800) }, args=['-I' + path_from_root('tests', 'zlib')], suffix='c') |