summaryrefslogtreecommitdiff
path: root/evdevtest/juice_evtest.sh
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2015-10-06 15:13:21 +0530
committerVishal Bhoj <vishal.bhoj@linaro.org>2015-10-06 15:14:32 +0530
commit15120adcdfd38486243296ad5baf5eb0ed30e14c (patch)
treee82eb9fe9efba4e60622057833835cd5f36836c4 /evdevtest/juice_evtest.sh
parent3f995b4f2c06710f0e3c147f0281cef0bf485ec4 (diff)
downloadlinaro-android-kernel-test-15120adcdfd38486243296ad5baf5eb0ed30e14c.tar.gz
Remove Evdevtest as Android doesn't support modules
Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org> Change-Id: I0e136cab9f4b9056dbb9cb939cbee6c29855cb1b
Diffstat (limited to 'evdevtest/juice_evtest.sh')
-rwxr-xr-xevdevtest/juice_evtest.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/evdevtest/juice_evtest.sh b/evdevtest/juice_evtest.sh
deleted file mode 100755
index 4f5f2e0..0000000
--- a/evdevtest/juice_evtest.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/system/bin/sh
-
-rc=0
-
-if [ ! -e /system/modules/juice_input_test_module.ko ]; then
- echo "juice input kernel module doesn't exist!"
- exit
-fi
-
-insmod /system/modules/juice_input_test_module.ko
-rc=$?
-if [ $rc -ne 0 ]; then
- echo "Insmod juice input kernel module failed!"
- exit
-fi
-
-N=`dmesg |grep Juice|awk -F '' '{print $NF}'`
-
-echo "Evdev IOCTL CMD TEST START"
-juice_evtest -p /dev/input/event$N
-rc=$?
-if [ $rc -ne 0 ]; then
- echo "Evdev IOCTL CMD TEST FAIL!"
-else
- echo "EVDEV IOCTL CMD TEST FINISH"
-fi
-
-rmmod juice_input_test_module
-rc=$?
-if [ $rc -ne 0 ]; then
- echo "Remove juice input kernel module failed!"
-fi
-