diff options
author | Tao Bao <tbao@google.com> | 2016-02-05 19:41:01 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-02-05 19:41:01 +0100 |
commit | 38b02cc6a097e6356f2369fc2b23c8c8a893e3ff (patch) | |
tree | 3ff2eeea4cddeff07bb1131005045ed3feb6eaf8 /README.md | |
parent | Merge "updater: fix memory leak based on static analysis." (diff) | |
parent | Refactor existing tests to use gtest (diff) | |
download | android_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 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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 |