Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: PRESUBMIT.py

Issue 10879099: Add linux_asan, mac_asan, linux_chromeos_asan to the list of preferred trybots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
===================================================================
--- PRESUBMIT.py (revision 154676)
+++ PRESUBMIT.py (working copy)
@@ -580,21 +580,23 @@
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698