On Sun, Oct 06, 2013 at 05:46:19PM -0500, Eric Sandeen wrote: > Long device names may be split onto their own line > on quota output: > > Filesystem Blocks Quota Limit Warn/Time Mounted on > /dev/mapper/my-very-very-very-long-devicename > 48M 0 0 00 [------] /mnt/scratch > > which breaks tests that capture quota output - currently, > only xfs/107. xfs/108? > Add a _filter_quota() which fixes this. Is this necessary for any other tests? I notice some have their own filters (e.g. xfs/106), but AFAICT none of them handle wraped lines... > Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> > --- > > > > diff --git a/common/filter b/common/filter > index 066b353..a0d9d2a 100644 > --- a/common/filter > +++ b/common/filter > @@ -240,6 +240,15 @@ _filter_spaces() > sed -e 's/ [ ]*/ /g' > } > > +_filter_quota() > +{ > + # Long dev name might be split onto its own line; last > + # seds remove that newline if present > + _filter_scratch | _filter_test_dir | _filter_spaces | \ > + sed -e 'N;s/SCRATCH_DEV\n/SCRATCH_DEV/g' | \ > + sed -e 'N;s/TEST_DEV\n/TEST_DEV/g' A bit messy, but given that we need to filter SCRATCH_MNT and TEST_DIR as well I can't see a much more obvious way to do it. I can think of plenty of line noise equivalents that are much shorter and more concise, but the comments explaining it would be longer than the above method. ;) So: Reviewed-by: Dave Chinner <dchinner@xxxxxxxxxx> Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs