From ac7ad44cbabb2cac0425ce5273a1e0f636f03a78 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 30 May 2012 09:51:30 -0700 Subject: [PATCH] tweak emcc caching test numbers --- tests/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runner.py b/tests/runner.py index ecbb77946..794b6dd8d 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