Index: build/android/buildbot/buildbot_functions.sh |
diff --git a/build/android/buildbot/buildbot_functions.sh b/build/android/buildbot/buildbot_functions.sh |
index 38ef67d2f27873ee09e262aa1239d7f09eaa5898..4a9aa5bd6510c5e185379e9933eb7e0d60a92688 100755 |
--- a/build/android/buildbot/buildbot_functions.sh |
+++ b/build/android/buildbot/buildbot_functions.sh |
@@ -196,19 +196,23 @@ function bb_run_tests_emulator { |
build/android/run_tests.py -e --xvfb --verbose |
} |
-# Run tests on an actual device. (Better have one plugged in!) |
-function bb_run_unit_tests { |
+function bb_spawn_logcat_monitor_and_status { |
python build/android/device_status_check.py |
local LOGCAT_DUMP_DIR="$CHROME_SRC/out/logcat" |
rm -rf "$LOGCAT_DUMP_DIR" |
python build/android/adb_logcat_monitor.py "$LOGCAT_DUMP_DIR" & |
+} |
- build/android/run_tests.py --xvfb --verbose |
- |
+function bb_print_logcat { |
echo "@@@BUILD_STEP Logcat dump@@@" |
python build/android/adb_logcat_printer.py "$LOGCAT_DUMP_DIR" |
} |
+# Run tests on an actual device. (Better have one plugged in!) |
+function bb_run_unit_tests { |
+ build/android/run_tests.py --xvfb --verbose |
+} |
+ |
# Run instrumentation test. |
# Args: |
# $1: TEST_APK. |