]> www.infradead.org Git - users/hch/xfstests-dev.git/commitdiff
069: make scratch mkfs quiet
authorEric Sandeen <sandeen@sandeen.net>
Thu, 28 May 2009 16:37:56 +0000 (11:37 -0500)
committerEric Sandeen <sandeen@sandeen.net>
Thu, 28 May 2009 16:37:56 +0000 (11:37 -0500)
The _scratch_mkfs call in test 069 was not redirecting
stderr to /dev/null; other mkfs's may be more noisy
on stderr.

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
069

diff --git a/069 b/069
index 6763d4bcbc2de70760612fd19e23dbcccbc94ed3..cf557055bdfbff7a8a4312d8ccf314f7cc2b7a1b 100755 (executable)
--- a/069
+++ b/069
@@ -46,7 +46,7 @@ rm -f $seq.full
 umount $SCRATCH_DEV >/dev/null 2>&1
 
 echo "*** mkfs"
-_scratch_mkfs >/dev/null || _fail "mkfs failed"
+_scratch_mkfs >/dev/null 2>&1 || _fail "mkfs failed"
 
 echo "*** mount FS"
 _scratch_mount >/dev/null || _fail "mount failed"