Bug 1326471 - Ash runs talos-g4 despite being 'enable_talos': False, r=kmoir

This commit is contained in:
Alin Selagea 2017-01-27 10:14:53 +02:00
Родитель 461fd31b94
Коммит 73c32e9431
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -94,9 +94,12 @@ def target_tasks_ash(full_task_graph, parameters):
if platform == 'linux64-asan' and task.attributes['build_type'] == 'debug':
return False
# no non-e10s tests
if task.attributes.get('unittest_suite') or task.attributes.get('talos_suite'):
if task.attributes.get('unittest_suite'):
if not task.attributes.get('e10s'):
return False
# don't run talos on ash
if task.attributes.get('unittest_suite') == 'talos':
return False
# don't upload symbols
if task.attributes['kind'] == 'upload-symbols':
return False