diff --git a/android/buildbot/bb_tests.py b/android/buildbot/bb_tests.py index 8f090cfee..9795b22ad 100755 --- a/android/buildbot/bb_tests.py +++ b/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)