From bfdca243e1d82fa870e0383b96bc41f6d44c629c Mon Sep 17 00:00:00 2001 From: Amit Pundir Date: Wed, 3 Jul 2013 21:07:56 +0530 Subject: add vfat test Signed-off-by: Amit Pundir --- linaro-android-kernel-tests.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/linaro-android-kernel-tests.sh b/linaro-android-kernel-tests.sh index 5164878..8e83574 100755 --- a/linaro-android-kernel-tests.sh +++ b/linaro-android-kernel-tests.sh @@ -24,6 +24,7 @@ usage() { echo " logger" echo " binder" echo " sync" + echo " vfat" echo "" echo "example:" echo "$ linaro-android-kernel-tests -t \"logger binder\"" @@ -105,9 +106,14 @@ run_sync_test() { sync-basic } +run_vfat_test() { + echo "Running vfat test." + vfat-volid-test.sh +} + run_all() { echo "Running all tests" - TESTS="ashmem ashmem_expanded alarmdev logger binder sync" + TESTS="ashmem ashmem_expanded alarmdev logger binder sync vfat" run_tests } @@ -133,6 +139,9 @@ run_tests() { sync) run_sync_test ;; + vfat) + run_vfat_test + ;; *) echo "" echo "Unrecognized test $TEST." -- cgit v1.2.3