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

Unified Diff: build/android/buildbot/bb_run_bot.py

Issue 11857014: Move android reboot step into python (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed multiprocessing comment Created 7 years, 11 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 | « build/android/buildbot/bb_device_steps.py ('k') | build/android/buildbot/bb_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_run_bot.py
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py
index adfd7bcca1726ef393ef87c9d3f500a45bf89ba2..0f71768d0bbb88539914d62a0b1da97238e0a25f 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -55,7 +55,8 @@ def GetCommands(options, bot_config):
test_obj = bot_config.test_obj
if test_obj:
- run_test_cmd = ['build/android/buildbot/bb_tests.py'] + property_args
+ run_test_cmd = [
+ 'build/android/buildbot/bb_device_steps.py', '--reboot'] + property_args
for test in test_obj.tests:
run_test_cmd.extend(['-f', test])
if test_obj.extra_args:
@@ -68,7 +69,7 @@ def GetCommands(options, bot_config):
def GetBotStepMap():
compile_step = ['bb_compile']
std_build_steps = ['bb_compile', 'bb_zip_build']
- std_test_steps = ['bb_extract_build', 'bb_reboot_phones']
+ std_test_steps = ['bb_extract_build']
std_tests = ['ui', 'unit']
B = BotConfig
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | build/android/buildbot/bb_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698