summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authornavabi@google.com <navabi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-30 10:48:55 +0000
committernavabi@google.com <navabi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-30 10:48:55 +0000
commit4044f258d41b8fbe681c11f8ada3c1fbbd5ae968 (patch)
tree3a0957544797476ebe6c046bb31e841b7ad12f7f /build
parent783fff618b4ecc6c50cdf571f47d3aec01286b0c (diff)
downloadchromium_src-4044f258d41b8fbe681c11f8ada3c1fbbd5ae968.zip
chromium_src-4044f258d41b8fbe681c11f8ada3c1fbbd5ae968.tar.gz
chromium_src-4044f258d41b8fbe681c11f8ada3c1fbbd5ae968.tar.bz2
Remove telemetry_unittests from Android dbg tests.
BUG=366899 Review URL: https://codereview.chromium.org/250843008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267166 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-xbuild/android/buildbot/bb_run_bot.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py
index f41ae64..745091c 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -139,8 +139,9 @@ def GetBotStepMap():
B('main-clang-builder',
H(compile_step, extra_gyp='clang=1 component=shared_library')),
B('main-clobber', H(compile_step)),
- B('main-tests', H(std_test_steps), T(std_tests + telemetry_tests,
- [flakiness_server])),
+ B('main-tests-rel', H(std_test_steps), T(std_tests + telemetry_tests,
+ [flakiness_server])),
+ B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])),
# Other waterfalls
B('asan-builder-tests', H(compile_step,
@@ -200,6 +201,7 @@ def GetBotStepMap():
('try-clang-builder', 'main-clang-builder'),
('try-fyi-builder-dbg', 'fyi-builder-dbg'),
('try-x86-builder-dbg', 'x86-builder-dbg'),
+ ('try-tests-rel', 'main-tests-rel'),
('try-tests', 'main-tests'),
('try-fyi-tests', 'fyi-tests'),
('webkit-latest-tests', 'main-tests'),