diff options
author | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-03 11:16:24 +0000 |
---|---|---|
committer | glider@chromium.org <glider@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-03 11:16:24 +0000 |
commit | 641f2e3e0347efc10af7dc3cc77e19e8bccc1250 (patch) | |
tree | dc18033a4f315e92062672698047f5ff7169bc24 /PRESUBMIT.py | |
parent | 5e9572e2a196d6c5fd59d7fe0e478753701a225d (diff) | |
download | chromium_src-641f2e3e0347efc10af7dc3cc77e19e8bccc1250.zip chromium_src-641f2e3e0347efc10af7dc3cc77e19e8bccc1250.tar.gz chromium_src-641f2e3e0347efc10af7dc3cc77e19e8bccc1250.tar.bz2 |
Add linux_asan, mac_asan, linux_chromeos_asan to the list of preferred trybots.
BUG=135155
Review URL: https://chromiumcodereview.appspot.com/10879099
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154677 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 9db77cc..22ff1a5 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -580,21 +580,23 @@ def GetPreferredTrySlaves(project, change): return [] if all(re.search('\.(m|mm)$|[/_]mac[/_.]', f) for f in files): - return ['mac_rel'] + return ['mac_rel', 'mac_asan'] if all(re.search('[/_]win[/_.]', f) for f in files): return ['win_rel'] if all(re.search('[/_]android[/_.]', f) for f in files): return ['android'] trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile', - 'linux_chromeos', 'android'] + 'linux_chromeos', 'android', 'linux_asan', 'mac_asan'] # Match things like path/aura/file.cc and path/file_aura.cc. # Same for ash and chromeos. if any(re.search('[/_](ash|aura)', f) for f in files): - trybots += ['linux_chromeos', 'linux_chromeos_clang:compile', 'win_aura'] + trybots += ['linux_chromeos', 'linux_chromeos_clang:compile', 'win_aura', + 'linux_chromeos_asan'] else: if any(re.search('[/_]chromeos', f) for f in files): - trybots += ['linux_chromeos', 'linux_chromeos_clang:compile'] + trybots += ['linux_chromeos', 'linux_chromeos_clang:compile', + 'linux_chromeos_asan'] return trybots |