diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-07 19:23:12 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-07 19:23:12 +0000 |
commit | 1f26298988e7436444fe197ee409a9188edc65f4 (patch) | |
tree | ddbc68e1fb3f612c9c42ab5a04aa6aec4854d77e /PRESUBMIT.py | |
parent | dde0c6797b6222eec6ce57d9262d15987d226131 (diff) | |
download | chromium_src-1f26298988e7436444fe197ee409a9188edc65f4.zip chromium_src-1f26298988e7436444fe197ee409a9188edc65f4.tar.gz chromium_src-1f26298988e7436444fe197ee409a9188edc65f4.tar.bz2 |
Fix linux_clang default try builder to only compile and not run tests.
So when a user does git try -t base_unittests, base_unittests is not run on
linux_clang.
Remove an invalid line added in r125922.
R=thakis@chromium.org
BUG=
TEST=
Review URL: http://codereview.chromium.org/10263007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135696 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 87f0894..0bb8ac8 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -328,10 +328,7 @@ def GetPreferredTrySlaves(project, change): only_objc_files = all(f.endswith(('.mm', '.m')) for f in affected_files) if only_objc_files: return ['mac_rel'] - preferred = ['win_rel', 'linux_rel', 'mac_rel'] - preferred = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang'] - if any(f.endswith(('.h', '.cc', '.cpp', '.cxx')) for f in affected_files): - preferred.append('linux_clang') + preferred = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile'] aura_re = '_aura[^/]*[.][^/]*' if any(re.search(aura_re, f) for f in affected_files): preferred.append('linux_chromeos') |