]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
xfstest: fix filtering in 206 for ftype and projid32bit
authorMark Tinguely <tinguely@sgi.com>
Thu, 24 Oct 2013 21:56:42 +0000 (21:56 +0000)
committerRich Johnston <rjohnston@sgi.com>
Sat, 9 Nov 2013 19:05:35 +0000 (13:05 -0600)
xfs/206 displays the output for mkfs.xfs, xfs_growfs and xfs_info.
Change the filtering to hide the new output for the field type
feature.

While cleaning up the ftype output, also clean up the projid32bit
output in xfs_growfs and xfs_info.

Signed-off-by: Mark Tinguely <tinguely@sgi.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Rich Johnston <rjohnston@sgi.com>
tests/xfs/206

index fcbdd9e71aac69b6640b6a923b22b2cf884d09a5..0bbd5953e84a6d96cef0107db17f9e452b4905b6 100755 (executable)
@@ -77,6 +77,7 @@ mkfs.xfs -f -bsize=4096 -dagsize=76288719b,size=3905982455b -llazy-count=0 $tmpf
        | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
                -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
                -e "s/, projid32bit=[0-9]//" \
+               -e "s/ ftype=[0-9]//" \
                -e "/.*crc=/d"
 
 mount -o loop $tmpfile $tmpdir || _fail "!!! failed to loopback mount"
@@ -86,6 +87,8 @@ echo "=== xfs_growfs ==="
 xfs_growfs $tmpdir \
        | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
                -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
+               -e "s/, projid32bit=[0-9]//" \
+               -e "s/ ftype=[0-9]//" \
                -e "/.*crc=/d"
 
 # and double-check the new geometry
@@ -93,6 +96,8 @@ echo "=== xfs_info ==="
 xfs_info $tmpdir \
        | sed -e "s,^meta-data=.*isize,meta-data=FILE                   isize,g" \
                -e "s/\(^log.*blocks=\)\([0-9]*,\)/\1XXXXX,/" \
+               -e "s/, projid32bit=[0-9]//" \
+               -e "s/ ftype=[0-9]//" \
                -e "/.*crc=/d"
 
 # _cleanup cleans up for us