All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xiao Yang <yangx.jy@cn.fujitsu.com>
To: darrick.wong@oracle.com
Cc: fstests@vger.kernel.org, Xiao Yang <yangx.jy@cn.fujitsu.com>
Subject: [PATCH] xfs/122: filter out reflink and rmap related outputs
Date: Fri, 27 May 2016 15:17:24 +0800	[thread overview]
Message-ID: <1464333444-25575-1-git-send-email-yangx.jy@cn.fujitsu.com> (raw)
In-Reply-To: <20160527072828.GD9418@birch.djwong.org>

I make sure xfs/122 passed when run against xfsprogs 4.5

Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com>
---
 tests/xfs/122     | 2 +-
 tests/xfs/122.out | 5 -----
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/tests/xfs/122 b/tests/xfs/122
index 845cdd2..cb3e0e7 100755
--- a/tests/xfs/122
+++ b/tests/xfs/122
@@ -224,7 +224,7 @@ echo 'return 0; }' >>$cprog
 # create and run program
 cc -o $oprog $cprog >> $seqres.full 2>&1 || \
   _notrun "Could not compile test program (see end of $seqres.full)"
-$oprog | _type_size_filter | _type_name_filter > $progout
+$oprog | _type_size_filter | _type_name_filter | egrep -v 'xfs_refcount.*|xfs_rmap.*' > $progout
 
 #
 # add addition sizes and xfs_sb_t fields that don't exist in the version
diff --git a/tests/xfs/122.out b/tests/xfs/122.out
index 451871e..8ba121e 100644
--- a/tests/xfs/122.out
+++ b/tests/xfs/122.out
@@ -75,11 +75,6 @@ sizeof(struct xfs_extent_data) = 24
 sizeof(struct xfs_extent_data_info) = 32
 sizeof(struct xfs_fs_eofblocks) = 128
 sizeof(struct xfs_icreate_log) = 28
-sizeof(struct xfs_refcount_key) = 4
-sizeof(struct xfs_refcount_rec) = 12
-sizeof(struct xfs_rmap_key) = 4
-sizeof(struct xfs_rmap_rec) = 24
-sizeof(struct xfs_rmapx_key) = 20
 sizeof(xfs_agf_t) = 224
 sizeof(xfs_agfl_t) = 36
 sizeof(xfs_agi_t) = 336
-- 
1.8.3.1




  reply	other threads:[~2016-05-27  8:03 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-26  5:57 [PATCH 0/7] xfstests: minor fixes for the reflink/dedupe tests Darrick J. Wong
2016-05-26  5:57 ` Darrick J. Wong
2016-05-26  5:57 ` [PATCH 1/7] xfs/104: don't enospc when ag metadata overhead grows Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:08   ` Christoph Hellwig
2016-05-26  8:08     ` Christoph Hellwig
2016-05-26  5:57 ` [PATCH 2/7] tests: don't put loop control files on the scratch mount Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:09   ` Christoph Hellwig
2016-05-26  8:09     ` Christoph Hellwig
2016-05-26 16:07     ` Darrick J. Wong
2016-05-26 16:07       ` Darrick J. Wong
2016-05-27  3:28   ` [PATCH v2 " Darrick J. Wong
2016-05-27  3:28     ` Darrick J. Wong
2016-05-31 12:52     ` Christoph Hellwig
2016-05-31 12:52       ` Christoph Hellwig
2016-05-26  5:57 ` [PATCH 3/7] xfs: test copy-on-write leftover recovery Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:22   ` Christoph Hellwig
2016-05-26  8:22     ` Christoph Hellwig
2016-05-26  5:57 ` [PATCH 4/7] xfs: test per-ag allocation accounting during truncate-caused refcountbt expansion Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:23   ` Christoph Hellwig
2016-05-26  8:23     ` Christoph Hellwig
2016-05-26  5:57 ` [PATCH 5/7] reflink: test interaction with swap files Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:24   ` Christoph Hellwig
2016-05-26  8:24     ` Christoph Hellwig
2016-05-26  5:57 ` [PATCH 6/7] xfs: test rmap behavior when multiple bmbt records map to a single rmapbt record Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:04   ` Christoph Hellwig
2016-05-26  8:04     ` Christoph Hellwig
2016-05-26 16:12     ` Darrick J. Wong
2016-05-26 16:12       ` Darrick J. Wong
2016-05-27  3:28   ` [PATCH v2 " Darrick J. Wong
2016-05-27  3:28     ` Darrick J. Wong
2016-05-31 12:52     ` Christoph Hellwig
2016-05-31 12:52       ` Christoph Hellwig
2016-05-26  5:57 ` [PATCH 7/7] reflink: test changing sharers of a block while keeping refcount the same Darrick J. Wong
2016-05-26  5:57   ` Darrick J. Wong
2016-05-26  8:24   ` Christoph Hellwig
2016-05-26  8:24     ` Christoph Hellwig
2016-05-26  7:31 ` question about xfs/122 Xiao Yang
2016-05-26 16:32   ` Darrick J. Wong
2016-05-27  6:33     ` [PATCH] xfs/122: add check number of structure Xiao Yang
2016-05-27  7:28       ` Darrick J. Wong
2016-05-27  7:17         ` Xiao Yang [this message]
2016-05-27  8:00         ` Xiao Yang
2016-05-27  6:44     ` question about xfs/122 Xiao Yang
2016-05-27 18:02 ` [PATCH 8/7] xfs/122: don't break on old xfsprogs Darrick J. Wong
2016-05-27 18:02   ` Darrick J. Wong
2016-05-31 12:51   ` Christoph Hellwig
2016-05-31 12:51     ` Christoph Hellwig
2016-05-31 16:41     ` Darrick J. Wong
2016-05-31 16:41       ` Darrick J. Wong
2016-05-31 16:43   ` [PATCH v2 " Darrick J. Wong
2016-05-31 16:43     ` Darrick J. Wong
2016-05-31 19:33     ` Christoph Hellwig
2016-05-31 19:33       ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1464333444-25575-1-git-send-email-yangx.jy@cn.fujitsu.com \
    --to=yangx.jy@cn.fujitsu.com \
    --cc=darrick.wong@oracle.com \
    --cc=fstests@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.