testsuite fixes
[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 "`id -u`" = 0 || {
8         echo "SKIPPED: must be root to test this"
9         exit 0
10 }
11
12 optional MKFS_MINIX
13 if [ -n "$SKIP" ]
14 then
15   echo "SKIPPED: mount"
16   exit 0
17 fi
18
19 testdir=$PWD/testdir
20
21 dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || { echo "dd error"; exit 1; }
22 mkfs.minix -v mount.image1m >/dev/null 2>&1 || { echo "mkfs.minix error"; exit 1; }
23 modprobe minix 2>/dev/null
24 mkdir "$testdir" 2>/dev/null
25 umount -d "$testdir" 2>/dev/null
26
27 # testing "test name" "command" "expected result" "file input" "stdin"
28 #   file input will be file called "input"
29 #   test can create a file "actual" instead of writing to stdout
30
31 testing "mount -o remount,mand" \
32 "mount -o loop mount.image1m $testdir "\
33 "&& grep -Fc $testdir </proc/mounts "\
34 "&& mount -o remount,mand $testdir "\
35 "&& grep -F $testdir </proc/mounts | grep -c '[, ]mand[, ]'" \
36         "1\n""1\n" \
37         "" ""
38
39 umount -d "$testdir"
40 rmdir "$testdir"
41 rm mount.image1m
42
43 exit $FAILCOUNT