diff options
author | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-13 18:24:38 +0000 |
---|---|---|
committer | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-13 18:24:38 +0000 |
commit | c4781e502e205f57d5b9d90178eb1b449f6bd611 (patch) | |
tree | dbda89fe64b5d127f716cf250521b0af4424d97f /PRESUBMIT.py | |
parent | 9984ca0682185909a315ed1d2d51007b04d05126 (diff) | |
download | chromium_src-c4781e502e205f57d5b9d90178eb1b449f6bd611.zip chromium_src-c4781e502e205f57d5b9d90178eb1b449f6bd611.tar.gz chromium_src-c4781e502e205f57d5b9d90178eb1b449f6bd611.tar.bz2 |
Enable android tests on default tryjobs
- Switch android tester from android to android_dbg,
the latter which kicks off a triggered tester
BUG=147462
Review URL: https://chromiumcodereview.appspot.com/10928137
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 1900b7e..acd94dd 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -585,10 +585,10 @@ def GetPreferredTrySlaves(project, change): 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'] + return ['android_dbg'] trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile', - 'linux_chromeos', 'android', 'linux_asan', 'mac_asan'] + 'linux_chromeos', 'android_dbg', 'linux_asan', 'mac_asan'] # Match things like path/aura/file.cc and path/file_aura.cc. # Same for ash and chromeos. |