ee13ec285e69bb843233ff57a0c065f800afd57b
[oweals/busybox.git] / testsuite / mount.tests
1 #!/bin/sh
2 # Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
3 # Licensed under GPL v2, see file LICENSE for details.
4
5 . ./testing.sh
6
7 test -f "$bindir/.config" && . "$bindir/.config"
8
9 test "`id -u`" = 0 || {
10         echo "SKIPPED: mount (must be root to test this)"
11         exit 0
12 }
13
14 if test x"$CONFIG_MKFS_MINIX" != x"y" \
15 || test x"$CONFIG_FEATURE_MINIX2" != x"y" \
16 || test x"$CONFIG_FEATURE_DEVFS" = x"y" \
17 ; then
18         echo "SKIPPED: mount"
19         exit 0
20 fi
21
22 testdir=$PWD/testdir
23
24 dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || { echo "dd error"; exit 1; }
25 mkfs.minix -v mount.image1m >/dev/null 2>&1 || { echo "mkfs.minix error"; exit 1; }
26 modprobe minix 2>/dev/null
27 mkdir "$testdir" 2>/dev/null
28 umount -d "$testdir" 2>/dev/null
29
30 # testing "test name" "command" "expected result" "file input" "stdin"
31 #   file input will be file called "input"
32 #   test can create a file "actual" instead of writing to stdout
33
34 testing "mount -o remount,mand" \
35 "mount -o loop mount.image1m $testdir "\
36 "&& grep -Fc $testdir </proc/mounts "\
37 "&& mount -o remount,mand $testdir "\
38 "&& grep -F $testdir </proc/mounts | grep -c '[, ]mand[, ]'" \
39         "1\n""1\n" \
40         "" ""
41
42 umount -d "$testdir"
43 rmdir "$testdir"
44 rm mount.image1m
45
46 exit $FAILCOUNT