tweak emcc caching test numbers

This commit is contained in:
Alon Zakai 2012-05-30 09:51:30 -07:00
Родитель 530e64611c
Коммит ac7ad44cba
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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