From c4f469913e278a66efd128fdb2d220e460e27e59 Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Wed, 31 Jul 2002 21:32:56 +0000 Subject: [PATCH] Make this test work for fs block size < page size --- 009 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/009 b/009 index cc3dc93d..48994274 100755 --- a/009 +++ b/009 @@ -46,7 +46,6 @@ here=`pwd` tmp=/tmp/$$ status=1 # failure is the default! trap "_cleanup; exit \$status" 0 1 2 3 15 -bsize=`$here/src/getpagesize` _cleanup() { @@ -64,13 +63,16 @@ _block_filter() _init() { echo "*** mkfs" - if ! mkfs_xfs $SCRATCH_DEV >$tmp.out 2>&1 + if ! (mkfs_xfs $SCRATCH_DEV | _filter_mkfs 1>/dev/null 2>$tmp.out) then cat $tmp.out echo "failed to mkfs $SCRATCH_DEV" exit 1 fi + source $tmp.out + bsize=$dbsize + echo "*** mount" if ! mount $SCRATCH_DEV $SCRATCH_MNT -t xfs then -- 2.39.5