diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-30 09:51:30 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-30 09:51:30 -0700 |
commit | ac7ad44cbabb2cac0425ce5273a1e0f636f03a78 (patch) | |
tree | e61f6f2faa38e7dbdf72b76dc483ce229b2ee373 | |
parent | 530e64611c4aaec88ee0c072d5f4ac5ecdedf057 (diff) |
tweak emcc caching test numbers
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index ecbb7794..794b6dd8 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -8116,7 +8116,7 @@ elif 'sanity' in str(sys.argv): print os.stat(os.path.join(EMCC_CACHE, libname + '.bc')).st_size, os.stat(basebc_name).st_size, os.stat(dcebc_name).st_size assert os.stat(os.path.join(EMCC_CACHE, libname + '.bc')).st_size > 2000000, 'libc++ is big' assert os.stat(basebc_name).st_size > 2000000, 'libc++ is indeed big' - assert os.stat(dcebc_name).st_size < 1000000, 'Dead code elimination must remove most of libc++' + assert os.stat(dcebc_name).st_size < 1500000, 'Dead code elimination must remove most of libc++' finally: if emcc_debug: os.environ['EMCC_DEBUG'] = emcc_debug |