| 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
|
|
|