mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 1289209 - linux64/asan should run on ubuntu12.04 as we leak on 16.04. r=dustin
MozReview-Commit-ID: B9cnhHh48oZ --HG-- extra : rebase_source : a17b80527d576c8d706b1ca73673c75b1737f571
This commit is contained in:
parent
4f426feb17
commit
65e19d07b7
@ -43,6 +43,18 @@ def set_treeherder_machine_platform(config, tests):
|
||||
yield test
|
||||
|
||||
|
||||
@transforms.add
|
||||
def set_asan_docker_image(config, tests):
|
||||
"""Set the appropriate task.extra.treeherder.docker-image"""
|
||||
# Linux64-asan has many leaks with running mochitest-media jobs
|
||||
# on Ubuntu 16.04, please remove this when bug 1289209 is resolved
|
||||
for test in tests:
|
||||
if test['suite'] == 'mochitest/mochitest-media' and \
|
||||
test['build-platform'] == 'linux64-asan/opt':
|
||||
test['docker-image'] = {"in-tree": "desktop-test"}
|
||||
yield test
|
||||
|
||||
|
||||
@transforms.add
|
||||
def split_e10s(config, tests):
|
||||
for test in tests:
|
||||
|
Loading…
Reference in New Issue
Block a user