From b0018ecef89db3b663c54a05df9bd551100f2c5a Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Thu, 28 May 2009 11:37:56 -0500 Subject: [PATCH] 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 --- 069 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/069 b/069 index 6763d4bc..cf557055 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" -- 2.39.5