diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-18 16:22:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-18 16:22:26 +0200 |
commit | 6ae6426a7485b5835c23aea198b3065f491d918b (patch) | |
tree | 79ebcee570986e27d7137720ca3139af277a162b /testsuite/mount.tests | |
parent | b71ce023e9527b6afaa497ce62ca53a74cf94cef (diff) | |
download | busybox-w32-6ae6426a7485b5835c23aea198b3065f491d918b.tar.gz busybox-w32-6ae6426a7485b5835c23aea198b3065f491d918b.tar.bz2 busybox-w32-6ae6426a7485b5835c23aea198b3065f491d918b.zip |
fix mountpoint test to not prevemt mkfs_xxx from making image in any file
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/mount.tests')
-rwxr-xr-x | testsuite/mount.tests | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testsuite/mount.tests b/testsuite/mount.tests index 5374ecbd6..c8381a0de 100755 --- a/testsuite/mount.tests +++ b/testsuite/mount.tests | |||
@@ -1,5 +1,4 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | |||
3 | # Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com> | 2 | # Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com> |
4 | # Licensed under GPL v2, see file LICENSE for details. | 3 | # Licensed under GPL v2, see file LICENSE for details. |
5 | 4 | ||
@@ -10,8 +9,8 @@ test "`id -u`" = 0 || { | |||
10 | exit 0 | 9 | exit 0 |
11 | } | 10 | } |
12 | 11 | ||
13 | dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || exit 1 | 12 | dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || { echo "dd error"; exit 1; } |
14 | mkfs.minix -v mount.image1m >/dev/null 2>&1 || exit 1 | 13 | mkfs.minix -v mount.image1m >/dev/null 2>&1 || { echo "mkfs.minix error"; exit 1; } |
15 | testdir=$PWD/testdir | 14 | testdir=$PWD/testdir |
16 | mkdir $testdir 2>/dev/null | 15 | mkdir $testdir 2>/dev/null |
17 | umount -d $testdir 2>/dev/null | 16 | umount -d $testdir 2>/dev/null |