diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-19 08:14:54 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-19 08:14:54 -0700 |
commit | c3570e254952ba0593038993674473e900ada9e0 (patch) | |
tree | eb0dab6ec90c9e9387ef785e62781b3e0f099ded | |
parent | 1c11fdd98530b6d35e51c0eba14fb1f375d05229 (diff) |
adjust test_emcc_caching for llvm 3.1: libc++ is smaller now
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 58a18555..fcb84952 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7695,8 +7695,8 @@ elif 'sanity' in str(sys.argv): assert os.path.exists(EMCC_CACHE) assert os.path.exists(os.path.join(EMCC_CACHE, libname + '.bc')) if libname == 'libcxx': - assert os.stat(os.path.join(EMCC_CACHE, libname + '.bc')).st_size > 4000000, 'libc++ is big' - assert os.stat(basebc_name).st_size > 4000000, 'libc++ is indeed big' + assert os.stat(os.path.join(EMCC_CACHE, libname + '.bc')).st_size > 3500000, 'libc++ is big' + assert os.stat(basebc_name).st_size > 3500000, 'libc++ is indeed big' assert os.stat(dcebc_name).st_size < 2000000, 'Dead code elimination must remove most of libc++' finally: if emcc_debug: |