Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | AndroidTestUtilities: fix cleanup operation | Ruslan Baratov | 2017-01-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | `su` is not available by default on all devices: ``` > adb shell "echo ls /data/local/tmp | su" /system/bin/sh: su: not found > echo $? 0 ``` Also since `execute_adb_command` use `execute_process` under the hood the pipeline (`|`) will not be treated as special symbol and will be process just like one more command line argument for the `adb`. | ||||
* | AndroidTestUtilities: Add module to help drive Android device tests | Schuyler Kylstra | 2016-09-30 | 1 | -0/+174 |
Add a module to manage the data needed for the project tests. It will move the test data to the build directory and transfer necessary data to an Android device if that is enabled. |