diff options
author | Gabriel Biren <gbiren@google.com> | 2023-06-15 00:12:52 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2023-06-15 00:12:52 +0000 |
commit | 01cf38f349e9b667d299987e70a80d12885663cc (patch) | |
tree | 988c0b6904e4fd9c29bce98fee321585b83b2650 | |
parent | 6f14da4e93201c69e310b43622b847d117088b52 (diff) | |
parent | 80f5392763f5bbd2645140696bc347c65fea1acc (diff) |
Merge "Improve process to run the Vendor HAL gTest suite." into udc-dev
-rw-r--r-- | wifi/aidl/default/tests/README.md | 14 | ||||
-rwxr-xr-x | wifi/aidl/default/tests/runtests.sh | 3 |
2 files changed, 16 insertions, 1 deletions
diff --git a/wifi/aidl/default/tests/README.md b/wifi/aidl/default/tests/README.md new file mode 100644 index 0000000000..fc0a98ad92 --- /dev/null +++ b/wifi/aidl/default/tests/README.md @@ -0,0 +1,14 @@ +# Vendor HAL gTest Suite + +## Overview +Rather than testing an active instance of the service like the VTS tests, +this test suite will test individual files from the Vendor HAL. +This is especially useful for testing conversion methods (see `aidl_struct_util_unit_tests.cpp`), +but can also be used to test things like `wifi_chip`. + +## Usage +Run the test script with a device connected: + +``` +./runtests.sh +``` diff --git a/wifi/aidl/default/tests/runtests.sh b/wifi/aidl/default/tests/runtests.sh index 1f53ab8e05..228c82b950 100755 --- a/wifi/aidl/default/tests/runtests.sh +++ b/wifi/aidl/default/tests/runtests.sh @@ -20,7 +20,8 @@ if [ -z $ANDROID_BUILD_TOP ]; then fi set -e -$ANDROID_BUILD_TOP/build/soong/soong_ui.bash --make-mode android.hardware.wifi-service-tests adb root +adb wait-for-device +$ANDROID_BUILD_TOP/build/soong/soong_ui.bash --make-mode android.hardware.wifi-service-tests adb sync data adb shell /data/nativetest64/vendor/android.hardware.wifi-service-tests/android.hardware.wifi-service-tests |