summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-02-05 19:41:01 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-02-05 19:41:01 +0100
commit38b02cc6a097e6356f2369fc2b23c8c8a893e3ff (patch)
tree3ff2eeea4cddeff07bb1131005045ed3feb6eaf8 /README.md
parentMerge "updater: fix memory leak based on static analysis." (diff)
parentRefactor existing tests to use gtest (diff)
downloadandroid_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.tar
android_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.tar.gz
android_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.tar.bz2
android_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.tar.lz
android_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.tar.xz
android_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.tar.zst
android_bootable_recovery-38b02cc6a097e6356f2369fc2b23c8c8a893e3ff.zip
Diffstat (limited to '')
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
index bab7e87cd..01fab9465 100644
--- a/README.md
+++ b/README.md
@@ -10,3 +10,20 @@ Quick turn-around testing
# without flashing the recovery partition:
adb reboot bootloader
fastboot boot $ANDROID_PRODUCT_OUT/recovery.img
+
+Running the tests
+-----------------
+ # After setting up environment and lunch.
+ mmma -j bootable/recovery
+
+ # Running the tests on device.
+ adb root
+ adb sync data
+
+ # 32-bit device
+ adb shell /data/nativetest/recovery_unit_test/recovery_unit_test
+ adb shell /data/nativetest/recovery_component_test/recovery_component_test
+
+ # Or 64-bit device
+ adb shell /data/nativetest64/recovery_unit_test/recovery_unit_test
+ adb shell /data/nativetest64/recovery_component_test/recovery_component_test