summaryrefslogtreecommitdiff
path: root/automated/android/busybox/busybox.sh
diff options
context:
space:
mode:
Diffstat (limited to 'automated/android/busybox/busybox.sh')
-rwxr-xr-xautomated/android/busybox/busybox.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/automated/android/busybox/busybox.sh b/automated/android/busybox/busybox.sh
new file mode 100755
index 0000000..30141da
--- /dev/null
+++ b/automated/android/busybox/busybox.sh
@@ -0,0 +1,20 @@
+#!/bin/sh -e
+# Busybox smoke tests.
+
+OUTPUT="$(pwd)/output"
+
+# shellcheck disable=SC1091
+. ../../lib/sh-test-lib
+# shellcheck disable=SC1091
+. ../../lib/android-test-lib
+
+initialize_adb
+wait_boot_completed "300"
+create_out_dir "${OUTPUT}"
+
+adb_push "./device-script.sh" "/data/local/tmp/bin/"
+
+adb -s "${SN}" shell '/data/local/tmp/bin/device-script.sh 2>&1' \
+ | tee "${OUTPUT}/device-stdout.log"
+
+adb_pull "/data/local/tmp/busybox/result.txt" "${OUTPUT}/"