Skip to content

Commit ac7ad44

Browse files
committed
tweak emcc caching test numbers
1 parent 530e646 commit ac7ad44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8116,7 +8116,7 @@ def test_emcc_caching(self):
81168116
print os.stat(os.path.join(EMCC_CACHE, libname + '.bc')).st_size, os.stat(basebc_name).st_size, os.stat(dcebc_name).st_size
81178117
assert os.stat(os.path.join(EMCC_CACHE, libname + '.bc')).st_size > 2000000, 'libc++ is big'
81188118
assert os.stat(basebc_name).st_size > 2000000, 'libc++ is indeed big'
8119-
assert os.stat(dcebc_name).st_size < 1000000, 'Dead code elimination must remove most of libc++'
8119+
assert os.stat(dcebc_name).st_size < 1500000, 'Dead code elimination must remove most of libc++'
81208120
finally:
81218121
if emcc_debug:
81228122
os.environ['EMCC_DEBUG'] = emcc_debug

0 commit comments

Comments
 (0)