backout 3 patches (1ee5b2531836, cac593a84f72, 95ccdb87f63f) from bug 1392106 for not fixing font rendering problems.

This commit is contained in:
Joel Maher
2018-05-18 06:40:00 +03:00
parent 9428571fda
commit 00a8f72d4a
23 changed files with 1193 additions and 531 deletions

View File

@@ -879,20 +879,6 @@ def allow_software_gl_layers(config, tests):
yield test
@transforms.add
def reftest_win7_slowmode(config, tests):
"""
Win7 needs time to render fonts, so for the reftest-fonts, add --run-slow
"""
for test in tests:
if test['build-platform'].startswith('win32') and \
'font' in test['suite']:
test['mozharness'].setdefault('extra-options', [])\
.append("--run-slower")
yield test
@transforms.add
def enable_webrender(config, tests):
"""
@@ -989,7 +975,7 @@ def set_worker_type(config, tests):
# now we have the right platform set the worker type accordingly
test['worker-type'] = win_worker_type_platform[test['virtualization']]
elif test_platform.startswith('linux') or test_platform.startswith('android'):
if test.get('suite', '') == 'talos' and \
if test.get('suite', '') == 'talos' and \
not test['build-platform'].startswith('linux64-ccov'):
test['worker-type'] = 'releng-hardware/gecko-t-linux-talos'
else: