Bug 1396260 - run reftest in smaller browser sessions on windows 7 to reduce font loading/rendering issues. r=jfkthame

This commit is contained in:
Joel Maher 2017-10-14 08:09:48 -04:00
parent 0ca4fd5841
commit cb26ec367c

View File

@ -704,6 +704,11 @@ def split_chunks(config, tests):
if test['test-platform'] == 'windows7-32/debug' and test['test-name'] == 'reftest':
test['chunks'] = 32
if (test['test-platform'] == 'windows7-32/opt' or
test['test-platform'] == 'windows7-32-pgo/opt') and \
test['test-name'] in ['reftest-e10s', 'reftest-no-accel-e10s', 'reftest-gpu-e10s']:
test['chunks'] = 32
for this_chunk in range(1, test['chunks'] + 1):
# copy the test and update with the chunk number
chunked = copy.deepcopy(test)