From: Eric Sandeen Date: Thu, 28 May 2009 16:37:56 +0000 (-0500) Subject: 069: make scratch mkfs quiet X-Git-Tag: v1.1.0~294 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=b0018ecef89db3b663c54a05df9bd551100f2c5a;p=users%2Fhch%2Fxfstests-dev.git 069: make scratch mkfs quiet 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 Reviewed-by: Christoph Hellwig --- diff --git a/069 b/069 index 6763d4bcb..cf557055b 100755 --- 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"