From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sandeen.net ([63.231.237.45]:48140 "EHLO sandeen.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753692Ab3HPRKe (ORCPT ); Fri, 16 Aug 2013 13:10:34 -0400 Message-ID: <520E5D07.6090708@sandeen.net> Date: Fri, 16 Aug 2013 12:10:31 -0500 From: Eric Sandeen MIME-Version: 1.0 To: Stefan Behrens CC: xfs@oss.sgi.com, linux-btrfs@vger.kernel.org Subject: Re: [PATCH] xfstests: update filters and output of btrfs/006 References: <1376672566-5446-1-git-send-email-sbehrens@giantdisaster.de> In-Reply-To: <1376672566-5446-1-git-send-email-sbehrens@giantdisaster.de> Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-btrfs-owner@vger.kernel.org List-ID: On 8/16/13 12:02 PM, Stefan Behrens wrote: > The btrfs-progs tools changed the output: > - 100GiB instead of 100GB > - The number of spaces was changed ugh. > > Signed-off-by: Stefan Behrens > --- > common/filter | 2 +- > common/filter.btrfs | 3 ++- > tests/btrfs/006 | 6 +++--- > tests/btrfs/006.out | 36 ++++++++++++++++++------------------ > 4 files changed, 24 insertions(+), 23 deletions(-) > > diff --git a/common/filter b/common/filter > index dbb1674..ee738ca 100644 > --- a/common/filter > +++ b/common/filter > @@ -262,7 +262,7 @@ _filter_uuid() > # Filter out sizes like 6.14MB etc > _filter_size() > { > - sed -e "s/[0-9\.]\+\s\?[b|k|m|g|t][b]\?//ig" > + sed -e "s/[0-9\.]\+\s\?[b|k|m|g|t][i]\?[b]\?//ig" > } makes sense But for the rest, is the output change intentional, or sloppiness/accidental? If it's really intentional, then: Reviewed-by: Eric Sandeen > # Convert string read from stdin like 128K to bytes and print it to stdout > diff --git a/common/filter.btrfs b/common/filter.btrfs > index e9a2bc2..1584596 100644 > --- a/common/filter.btrfs > +++ b/common/filter.btrfs > @@ -33,6 +33,7 @@ _filter_btrfs_filesystem_show() > # the uniq collapses all device lines into 1 > _filter_uuid $UUID | _filter_scratch | _filter_scratch_pool | \ > _filter_size | _filter_btrfs_version | _filter_devid | \ > + _filter_spaces | \ > sed -e "s/\(Total devices\) $NUMDEVS/\1 $NUM_SUBST/g" | \ > uniq > } > @@ -51,7 +52,7 @@ _filter_btrfs_device_stats() > UNIQ_OPT="" > fi > > - _filter_scratch | _filter_scratch_pool | \ > + _filter_scratch | _filter_scratch_pool | _filter_spaces | \ > sed -e "s/[0-9]\+$//g" | sort | uniq $UNIQ_OPT | \ > sed -e "s/$NUMDEVS / /g" > } > diff --git a/tests/btrfs/006 b/tests/btrfs/006 > index 9f7beff..f323cc4 100755 > --- a/tests/btrfs/006 > +++ b/tests/btrfs/006 > @@ -82,13 +82,13 @@ echo "== Sync filesystem" > $BTRFS_UTIL_PROG filesystem sync $SCRATCH_MNT | _filter_scratch > > echo "== Show device stats by mountpoint" > -$BTRFS_UTIL_PROG device stats $SCRATCH_MNT | _filter_btrfs_device_stats $TOTAL_DEVS > +$BTRFS_UTIL_PROG device stats $SCRATCH_MNT | _filter_btrfs_device_stats $TOTAL_DEVS | _filter_spaces > echo "== Show device stats by first/scratch dev" > $BTRFS_UTIL_PROG device stats $SCRATCH_DEV | _filter_btrfs_device_stats > echo "== Show device stats by second dev" > -$BTRFS_UTIL_PROG device stats $FIRST_POOL_DEV | sed -e "s,$FIRST_POOL_DEV,FIRST_POOL_DEV,g" > +$BTRFS_UTIL_PROG device stats $FIRST_POOL_DEV | sed -e "s,$FIRST_POOL_DEV,FIRST_POOL_DEV,g" | _filter_spaces > echo "== Show device stats by last dev" > -$BTRFS_UTIL_PROG device stats $LAST_POOL_DEV | sed -e "s,$LAST_POOL_DEV,LAST_POOL_DEV,g" > +$BTRFS_UTIL_PROG device stats $LAST_POOL_DEV | sed -e "s,$LAST_POOL_DEV,LAST_POOL_DEV,g" | _filter_spaces > > # success, all done > status=0 > diff --git a/tests/btrfs/006.out b/tests/btrfs/006.out > index ab33b7e..413a5a8 100644 > --- a/tests/btrfs/006.out > +++ b/tests/btrfs/006.out > @@ -4,38 +4,38 @@ > TestLabel.006 > == Mount. > == Show filesystem by label > -Label: 'TestLabel.006' uuid: > +Label: 'TestLabel.006' uuid: > Total devices FS bytes used > - devid size used path SCRATCH_DEV > + devid size used path SCRATCH_DEV > > == Show filesystem by UUID > -Label: 'TestLabel.006' uuid: > +Label: 'TestLabel.006' uuid: > Total devices FS bytes used > - devid size used path SCRATCH_DEV > + devid size used path SCRATCH_DEV > > == Sync filesystem > FSSync 'SCRATCH_MNT' > == Show device stats by mountpoint > - [SCRATCH_DEV].corruption_errs > - [SCRATCH_DEV].flush_io_errs > - [SCRATCH_DEV].generation_errs > - [SCRATCH_DEV].read_io_errs > - [SCRATCH_DEV].write_io_errs > + [SCRATCH_DEV].corruption_errs > + [SCRATCH_DEV].flush_io_errs > + [SCRATCH_DEV].generation_errs > + [SCRATCH_DEV].read_io_errs > + [SCRATCH_DEV].write_io_errs > == Show device stats by first/scratch dev > [SCRATCH_DEV].corruption_errs > -[SCRATCH_DEV].flush_io_errs > +[SCRATCH_DEV].flush_io_errs > [SCRATCH_DEV].generation_errs > -[SCRATCH_DEV].read_io_errs > -[SCRATCH_DEV].write_io_errs > +[SCRATCH_DEV].read_io_errs > +[SCRATCH_DEV].write_io_errs > == Show device stats by second dev > -[FIRST_POOL_DEV].write_io_errs 0 > -[FIRST_POOL_DEV].read_io_errs 0 > -[FIRST_POOL_DEV].flush_io_errs 0 > +[FIRST_POOL_DEV].write_io_errs 0 > +[FIRST_POOL_DEV].read_io_errs 0 > +[FIRST_POOL_DEV].flush_io_errs 0 > [FIRST_POOL_DEV].corruption_errs 0 > [FIRST_POOL_DEV].generation_errs 0 > == Show device stats by last dev > -[LAST_POOL_DEV].write_io_errs 0 > -[LAST_POOL_DEV].read_io_errs 0 > -[LAST_POOL_DEV].flush_io_errs 0 > +[LAST_POOL_DEV].write_io_errs 0 > +[LAST_POOL_DEV].read_io_errs 0 > +[LAST_POOL_DEV].flush_io_errs 0 > [LAST_POOL_DEV].corruption_errs 0 > [LAST_POOL_DEV].generation_errs 0 > From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay2.corp.sgi.com [137.38.102.29]) by oss.sgi.com (Postfix) with ESMTP id 5E7967F55 for ; Fri, 16 Aug 2013 12:10:41 -0500 (CDT) Received: from cuda.sgi.com (cuda2.sgi.com [192.48.176.25]) by relay2.corp.sgi.com (Postfix) with ESMTP id 4DEBC304070 for ; Fri, 16 Aug 2013 10:10:37 -0700 (PDT) Received: from sandeen.net (sandeen.net [63.231.237.45]) by cuda.sgi.com with ESMTP id ZHBaxEsUWoksDiR7 for ; Fri, 16 Aug 2013 10:10:33 -0700 (PDT) Message-ID: <520E5D07.6090708@sandeen.net> Date: Fri, 16 Aug 2013 12:10:31 -0500 From: Eric Sandeen MIME-Version: 1.0 Subject: Re: [PATCH] xfstests: update filters and output of btrfs/006 References: <1376672566-5446-1-git-send-email-sbehrens@giantdisaster.de> In-Reply-To: <1376672566-5446-1-git-send-email-sbehrens@giantdisaster.de> List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: xfs-bounces@oss.sgi.com Sender: xfs-bounces@oss.sgi.com To: Stefan Behrens Cc: linux-btrfs@vger.kernel.org, xfs@oss.sgi.com On 8/16/13 12:02 PM, Stefan Behrens wrote: > The btrfs-progs tools changed the output: > - 100GiB instead of 100GB > - The number of spaces was changed ugh. > > Signed-off-by: Stefan Behrens > --- > common/filter | 2 +- > common/filter.btrfs | 3 ++- > tests/btrfs/006 | 6 +++--- > tests/btrfs/006.out | 36 ++++++++++++++++++------------------ > 4 files changed, 24 insertions(+), 23 deletions(-) > > diff --git a/common/filter b/common/filter > index dbb1674..ee738ca 100644 > --- a/common/filter > +++ b/common/filter > @@ -262,7 +262,7 @@ _filter_uuid() > # Filter out sizes like 6.14MB etc > _filter_size() > { > - sed -e "s/[0-9\.]\+\s\?[b|k|m|g|t][b]\?//ig" > + sed -e "s/[0-9\.]\+\s\?[b|k|m|g|t][i]\?[b]\?//ig" > } makes sense But for the rest, is the output change intentional, or sloppiness/accidental? If it's really intentional, then: Reviewed-by: Eric Sandeen > # Convert string read from stdin like 128K to bytes and print it to stdout > diff --git a/common/filter.btrfs b/common/filter.btrfs > index e9a2bc2..1584596 100644 > --- a/common/filter.btrfs > +++ b/common/filter.btrfs > @@ -33,6 +33,7 @@ _filter_btrfs_filesystem_show() > # the uniq collapses all device lines into 1 > _filter_uuid $UUID | _filter_scratch | _filter_scratch_pool | \ > _filter_size | _filter_btrfs_version | _filter_devid | \ > + _filter_spaces | \ > sed -e "s/\(Total devices\) $NUMDEVS/\1 $NUM_SUBST/g" | \ > uniq > } > @@ -51,7 +52,7 @@ _filter_btrfs_device_stats() > UNIQ_OPT="" > fi > > - _filter_scratch | _filter_scratch_pool | \ > + _filter_scratch | _filter_scratch_pool | _filter_spaces | \ > sed -e "s/[0-9]\+$//g" | sort | uniq $UNIQ_OPT | \ > sed -e "s/$NUMDEVS / /g" > } > diff --git a/tests/btrfs/006 b/tests/btrfs/006 > index 9f7beff..f323cc4 100755 > --- a/tests/btrfs/006 > +++ b/tests/btrfs/006 > @@ -82,13 +82,13 @@ echo "== Sync filesystem" > $BTRFS_UTIL_PROG filesystem sync $SCRATCH_MNT | _filter_scratch > > echo "== Show device stats by mountpoint" > -$BTRFS_UTIL_PROG device stats $SCRATCH_MNT | _filter_btrfs_device_stats $TOTAL_DEVS > +$BTRFS_UTIL_PROG device stats $SCRATCH_MNT | _filter_btrfs_device_stats $TOTAL_DEVS | _filter_spaces > echo "== Show device stats by first/scratch dev" > $BTRFS_UTIL_PROG device stats $SCRATCH_DEV | _filter_btrfs_device_stats > echo "== Show device stats by second dev" > -$BTRFS_UTIL_PROG device stats $FIRST_POOL_DEV | sed -e "s,$FIRST_POOL_DEV,FIRST_POOL_DEV,g" > +$BTRFS_UTIL_PROG device stats $FIRST_POOL_DEV | sed -e "s,$FIRST_POOL_DEV,FIRST_POOL_DEV,g" | _filter_spaces > echo "== Show device stats by last dev" > -$BTRFS_UTIL_PROG device stats $LAST_POOL_DEV | sed -e "s,$LAST_POOL_DEV,LAST_POOL_DEV,g" > +$BTRFS_UTIL_PROG device stats $LAST_POOL_DEV | sed -e "s,$LAST_POOL_DEV,LAST_POOL_DEV,g" | _filter_spaces > > # success, all done > status=0 > diff --git a/tests/btrfs/006.out b/tests/btrfs/006.out > index ab33b7e..413a5a8 100644 > --- a/tests/btrfs/006.out > +++ b/tests/btrfs/006.out > @@ -4,38 +4,38 @@ > TestLabel.006 > == Mount. > == Show filesystem by label > -Label: 'TestLabel.006' uuid: > +Label: 'TestLabel.006' uuid: > Total devices FS bytes used > - devid size used path SCRATCH_DEV > + devid size used path SCRATCH_DEV > > == Show filesystem by UUID > -Label: 'TestLabel.006' uuid: > +Label: 'TestLabel.006' uuid: > Total devices FS bytes used > - devid size used path SCRATCH_DEV > + devid size used path SCRATCH_DEV > > == Sync filesystem > FSSync 'SCRATCH_MNT' > == Show device stats by mountpoint > - [SCRATCH_DEV].corruption_errs > - [SCRATCH_DEV].flush_io_errs > - [SCRATCH_DEV].generation_errs > - [SCRATCH_DEV].read_io_errs > - [SCRATCH_DEV].write_io_errs > + [SCRATCH_DEV].corruption_errs > + [SCRATCH_DEV].flush_io_errs > + [SCRATCH_DEV].generation_errs > + [SCRATCH_DEV].read_io_errs > + [SCRATCH_DEV].write_io_errs > == Show device stats by first/scratch dev > [SCRATCH_DEV].corruption_errs > -[SCRATCH_DEV].flush_io_errs > +[SCRATCH_DEV].flush_io_errs > [SCRATCH_DEV].generation_errs > -[SCRATCH_DEV].read_io_errs > -[SCRATCH_DEV].write_io_errs > +[SCRATCH_DEV].read_io_errs > +[SCRATCH_DEV].write_io_errs > == Show device stats by second dev > -[FIRST_POOL_DEV].write_io_errs 0 > -[FIRST_POOL_DEV].read_io_errs 0 > -[FIRST_POOL_DEV].flush_io_errs 0 > +[FIRST_POOL_DEV].write_io_errs 0 > +[FIRST_POOL_DEV].read_io_errs 0 > +[FIRST_POOL_DEV].flush_io_errs 0 > [FIRST_POOL_DEV].corruption_errs 0 > [FIRST_POOL_DEV].generation_errs 0 > == Show device stats by last dev > -[LAST_POOL_DEV].write_io_errs 0 > -[LAST_POOL_DEV].read_io_errs 0 > -[LAST_POOL_DEV].flush_io_errs 0 > +[LAST_POOL_DEV].write_io_errs 0 > +[LAST_POOL_DEV].read_io_errs 0 > +[LAST_POOL_DEV].flush_io_errs 0 > [LAST_POOL_DEV].corruption_errs 0 > [LAST_POOL_DEV].generation_errs 0 > _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs