From 6ae6426a7485b5835c23aea198b3065f491d918b Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 18 Jul 2009 16:22:26 +0200 Subject: fix mountpoint test to not prevemt mkfs_xxx from making image in any file Signed-off-by: Denys Vlasenko --- testsuite/mount.tests | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'testsuite/mount.tests') 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 @@ #!/bin/sh - # Copyright 2007 by Denys Vlasenko # Licensed under GPL v2, see file LICENSE for details. @@ -10,8 +9,8 @@ test "`id -u`" = 0 || { exit 0 } -dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || exit 1 -mkfs.minix -v mount.image1m >/dev/null 2>&1 || exit 1 +dd if=/dev/zero of=mount.image1m count=1 bs=1M 2>/dev/null || { echo "dd error"; exit 1; } +mkfs.minix -v mount.image1m >/dev/null 2>&1 || { echo "mkfs.minix error"; exit 1; } testdir=$PWD/testdir mkdir $testdir 2>/dev/null umount -d $testdir 2>/dev/null -- cgit v1.2.3