| Index: build/android/buildbot/bb_tests.py
|
| diff --git a/build/android/buildbot/bb_tests.py b/build/android/buildbot/bb_tests.py
|
| index 5499215b05718a760c21cbc7797c1469020cb05c..a850afff39b47434b0ca77ffc952cd5c33c84236 100755
|
| --- a/build/android/buildbot/bb_tests.py
|
| +++ b/build/android/buildbot/bb_tests.py
|
| @@ -153,6 +153,9 @@ def RunWebkitLayoutTests(options):
|
|
|
|
|
| def MainTestWrapper(options):
|
| + # Device check and alert emails
|
| + RunCmd(['build/android/device_status_check.py'], flunk_on_failure=False)
|
| +
|
| if options.install:
|
| test_obj = INSTRUMENTATION_TESTS[options.install]
|
| InstallApk(test_obj.apk, test_obj.apk_package, options.target)
|
| @@ -160,9 +163,6 @@ def MainTestWrapper(options):
|
| if not options.test_filter:
|
| return
|
|
|
| - # Device check and alert emails
|
| - RunCmd(['build/android/device_status_check.py'], flunk_on_failure=False)
|
| -
|
| # Spawn logcat monitor
|
| logcat_dir = os.path.join(CHROME_SRC, 'out/logcat')
|
| shutil.rmtree(logcat_dir, ignore_errors=True)
|
|
|