diff options
-rwxr-xr-x | testsuite/mount.tests | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/testsuite/mount.tests b/testsuite/mount.tests index c8381a0de..f4a2cc214 100755 --- a/testsuite/mount.tests +++ b/testsuite/mount.tests | |||
@@ -9,11 +9,13 @@ test "`id -u`" = 0 || { | |||
9 | exit 0 | 9 | exit 0 |
10 | } | 10 | } |
11 | 11 | ||
12 | testdir=$PWD/testdir | ||
13 | |||
12 | dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || { echo "dd error"; exit 1; } | 14 | dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || { echo "dd error"; exit 1; } |
13 | mkfs.minix -v mount.image1m >/dev/null 2>&1 || { echo "mkfs.minix error"; exit 1; } | 15 | mkfs.minix -v mount.image1m >/dev/null 2>&1 || { echo "mkfs.minix error"; exit 1; } |
14 | testdir=$PWD/testdir | 16 | modprobe minix 2>/dev/null |
15 | mkdir $testdir 2>/dev/null | 17 | mkdir "$testdir" 2>/dev/null |
16 | umount -d $testdir 2>/dev/null | 18 | umount -d "$testdir" 2>/dev/null |
17 | 19 | ||
18 | # testing "test name" "command" "expected result" "file input" "stdin" | 20 | # testing "test name" "command" "expected result" "file input" "stdin" |
19 | # file input will be file called "input" | 21 | # file input will be file called "input" |
@@ -27,8 +29,8 @@ testing "mount -o remount,mand" \ | |||
27 | "1\n""1\n" \ | 29 | "1\n""1\n" \ |
28 | "" "" | 30 | "" "" |
29 | 31 | ||
30 | umount -d $testdir | 32 | umount -d "$testdir" |
31 | rmdir $testdir | 33 | rmdir "$testdir" |
32 | rm mount.image1m | 34 | rm mount.image1m |
33 | 35 | ||
34 | exit $FAILCOUNT | 36 | exit $FAILCOUNT |