diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-25 15:05:00 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-25 15:05:00 -0700 |
commit | e618e710b7506c856f9fbea597e4bb515a86eb1a (patch) | |
tree | 3b592f8ea0aaaa46487913d9e726467af61171ce /tests | |
parent | 6309dc12dc0f41f2be726662a473fbfc0f5c4851 (diff) |
disable aggressiveVariableElimination for now
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/runner.py b/tests/runner.py index 1646d40a..c4beb5d3 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11064,7 +11064,7 @@ f.close() curr = None return ret - for outlining_limit in [250, 500, 1000, 2000, 5000, 0]: + for outlining_limit in [100, 250, 500, 1000, 2000, 5000, 0]: print '\n', outlining_limit, '\n' # TODO: test without -g3, tell all sorts Popen([PYTHON, EMCC, src] + libs + ['-o', 'test.js', '-O2', '-g3', '-s', 'OUTLINING_LIMIT=%d' % outlining_limit] + args).communicate() @@ -11084,10 +11084,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(), { - 250: (330, 340), - 500: (270, 310), - 1000: (350, 380), - 2000: (470, 500), + 100: (270, 280), + 250: (330, 360), + 500: (320, 350), + 1000: (440, 480), + 2000: (450, 500), 5000: (800, 1100), 0: (1500, 1800) }, |