aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/mount.test6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/mount.test b/tests/mount.test
index 6590b946..19ba5654 100755
--- a/tests/mount.test
+++ b/tests/mount.test
@@ -7,8 +7,8 @@
#testing "name" "command" "result" "infile" "stdin"
-root_fs=`df | grep "\/$" | awk '{print $1}'`
-root_fs_type=`file -sL $root_fs | awk '{print $5}'`
+root_fs=`df | grep "\/$" | cut -d' ' -f1`
+root_fs_type=`blkid -o value $root_fs | tail -1`
tmp_b_fs="tmp_b_fs"
tmp_b_fs_type="ext3"
@@ -20,6 +20,8 @@ reCreateTmpFs() {
}
reCreateTmpFs
+# TODO: replace /mnt with a directory we know exists. (Android has no /mnt.)
+
testing "$root_fs /mnt" \
"mount $root_fs /mnt >/dev/null 2>&1 && mkdir /mnt/testDir &&
sleep 1 && umount /mnt && test -e /testDir && rmdir /testDir" "" "" ""