summaryrefslogtreecommitdiff
path: root/linaro-android-kernel-tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'linaro-android-kernel-tests.sh')
-rwxr-xr-xlinaro-android-kernel-tests.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/linaro-android-kernel-tests.sh b/linaro-android-kernel-tests.sh
index 8e83574..d35cb90 100755
--- a/linaro-android-kernel-tests.sh
+++ b/linaro-android-kernel-tests.sh
@@ -25,6 +25,7 @@ usage() {
echo " binder"
echo " sync"
echo " vfat"
+ echo " evdev"
echo ""
echo "example:"
echo "$ linaro-android-kernel-tests -t \"logger binder\""
@@ -111,9 +112,14 @@ run_vfat_test() {
vfat-volid-test.sh
}
+run_evdev_test() {
+ echo "Running evdev test."
+ juice_evtest.sh
+}
+
run_all() {
echo "Running all tests"
- TESTS="ashmem ashmem_expanded alarmdev logger binder sync vfat"
+ TESTS="ashmem ashmem_expanded alarmdev logger binder sync vfat evdev"
run_tests
}
@@ -142,6 +148,9 @@ run_tests() {
vfat)
run_vfat_test
;;
+ evdev)
+ run_evdev_test
+ ;;
*)
echo ""
echo "Unrecognized test $TEST."