add vfat test

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
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 @@
     echo "   logger"
     echo "   binder"
     echo "   sync"
+    echo "   vfat"
     echo ""
     echo "example:"
     echo "$ linaro-android-kernel-tests -t \"logger binder\""
@@ -105,9 +106,14 @@
     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 @@
 	    sync)
 		run_sync_test
 		;;
+	    vfat)
+		run_vfat_test
+		;;
 	    *)
 		echo ""
 		echo "Unrecognized test $TEST."