All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfstests: filter out latest xfsdump version messages
@ 2012-06-18 15:56 Brian Foster
  2012-06-18 16:18 ` Eric Sandeen
  0 siblings, 1 reply; 4+ messages in thread
From: Brian Foster @ 2012-06-18 15:56 UTC (permalink / raw)
  To: xfs; +Cc: sandeen

The latest version of xfsdump/restore (3.1.0) causes dump tests
to complain. Fix up the filter to include a wider selection of
version numbers.

Signed-off-by: Brian Foster <bfoster@redhat.com>
---
 common.dump |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/common.dump b/common.dump
index ca09ec1..61d3f43 100644
--- a/common.dump
+++ b/common.dump
@@ -863,7 +863,7 @@ _dump_filter_main()
       -e 's/1048576/BLOCKSZ/'				\
       -e 's/2097152/BLOCKSZ/'				\
       -e 's/(pid[	 ]*[1-9][0-9]*)/\(pid PID\)/'	\
-      -e '/version 3\.0/d'				\
+      -e '/version [3-9]\.[0-9]/d'				\
       -e 's/\/hw\/module.*$/SCRATCH_DEV/'		\
       -e 's/xfsdump: ino map phase 1: .*/xfsdump: ino map <PHASES>/' \
       -e '/xfsdump: ino map phase [2]/,1d'		\
-- 
1.7.7.6

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] xfstests: filter out latest xfsdump version messages
  2012-06-18 15:56 [PATCH] xfstests: filter out latest xfsdump version messages Brian Foster
@ 2012-06-18 16:18 ` Eric Sandeen
  2012-06-18 16:32   ` Brian Foster
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Sandeen @ 2012-06-18 16:18 UTC (permalink / raw)
  To: Brian Foster; +Cc: xfs

On 6/18/12 10:56 AM, Brian Foster wrote:
> The latest version of xfsdump/restore (3.1.0) causes dump tests
> to complain. Fix up the filter to include a wider selection of
> version numbers.

Looks good to me, thanks - I'll merge it, but I think I'll
add a "^version" to it to make it a little more selective,
if that's ok with you.

Reviewed-by: Eric Sandeen <sandeen@redhat.com>

> Signed-off-by: Brian Foster <bfoster@redhat.com>
> ---
>  common.dump |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/common.dump b/common.dump
> index ca09ec1..61d3f43 100644
> --- a/common.dump
> +++ b/common.dump
> @@ -863,7 +863,7 @@ _dump_filter_main()
>        -e 's/1048576/BLOCKSZ/'				\
>        -e 's/2097152/BLOCKSZ/'				\
>        -e 's/(pid[	 ]*[1-9][0-9]*)/\(pid PID\)/'	\
> -      -e '/version 3\.0/d'				\
> +      -e '/version [3-9]\.[0-9]/d'				\
>        -e 's/\/hw\/module.*$/SCRATCH_DEV/'		\
>        -e 's/xfsdump: ino map phase 1: .*/xfsdump: ino map <PHASES>/' \
>        -e '/xfsdump: ino map phase [2]/,1d'		\

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] xfstests: filter out latest xfsdump version messages
  2012-06-18 16:18 ` Eric Sandeen
@ 2012-06-18 16:32   ` Brian Foster
  2012-06-18 16:48     ` Eric Sandeen
  0 siblings, 1 reply; 4+ messages in thread
From: Brian Foster @ 2012-06-18 16:32 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: xfs

On 06/18/2012 12:18 PM, Eric Sandeen wrote:
> On 6/18/12 10:56 AM, Brian Foster wrote:
>> The latest version of xfsdump/restore (3.1.0) causes dump tests
>> to complain. Fix up the filter to include a wider selection of
>> version numbers.
> 
> Looks good to me, thanks - I'll merge it, but I think I'll
> add a "^version" to it to make it a little more selective,
> if that's ok with you.
> 

Fine by me, thanks.

Brian

> Reviewed-by: Eric Sandeen <sandeen@redhat.com>
> 
>> Signed-off-by: Brian Foster <bfoster@redhat.com>
>> ---
>>  common.dump |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/common.dump b/common.dump
>> index ca09ec1..61d3f43 100644
>> --- a/common.dump
>> +++ b/common.dump
>> @@ -863,7 +863,7 @@ _dump_filter_main()
>>        -e 's/1048576/BLOCKSZ/'				\
>>        -e 's/2097152/BLOCKSZ/'				\
>>        -e 's/(pid[	 ]*[1-9][0-9]*)/\(pid PID\)/'	\
>> -      -e '/version 3\.0/d'				\
>> +      -e '/version [3-9]\.[0-9]/d'				\
>>        -e 's/\/hw\/module.*$/SCRATCH_DEV/'		\
>>        -e 's/xfsdump: ino map phase 1: .*/xfsdump: ino map <PHASES>/' \
>>        -e '/xfsdump: ino map phase [2]/,1d'		\
> 

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] xfstests: filter out latest xfsdump version messages
  2012-06-18 16:32   ` Brian Foster
@ 2012-06-18 16:48     ` Eric Sandeen
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Sandeen @ 2012-06-18 16:48 UTC (permalink / raw)
  To: Brian Foster; +Cc: xfs

On 6/18/12 11:32 AM, Brian Foster wrote:
> On 06/18/2012 12:18 PM, Eric Sandeen wrote:
>> On 6/18/12 10:56 AM, Brian Foster wrote:
>>> The latest version of xfsdump/restore (3.1.0) causes dump tests
>>> to complain. Fix up the filter to include a wider selection of
>>> version numbers.
>>
>> Looks good to me, thanks - I'll merge it, but I think I'll
>> add a "^version" to it to make it a little more selective,
>> if that's ok with you.
>>
> 
> Fine by me, thanks.

actually that's wrong, because it puts executable name at the beginning!
Sorry.  I'll merge it as is, thanks.

-Eric

> Brian
> 
>> Reviewed-by: Eric Sandeen <sandeen@redhat.com>
>>
>>> Signed-off-by: Brian Foster <bfoster@redhat.com>
>>> ---
>>>  common.dump |    2 +-
>>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/common.dump b/common.dump
>>> index ca09ec1..61d3f43 100644
>>> --- a/common.dump
>>> +++ b/common.dump
>>> @@ -863,7 +863,7 @@ _dump_filter_main()
>>>        -e 's/1048576/BLOCKSZ/'				\
>>>        -e 's/2097152/BLOCKSZ/'				\
>>>        -e 's/(pid[	 ]*[1-9][0-9]*)/\(pid PID\)/'	\
>>> -      -e '/version 3\.0/d'				\
>>> +      -e '/version [3-9]\.[0-9]/d'				\
>>>        -e 's/\/hw\/module.*$/SCRATCH_DEV/'		\
>>>        -e 's/xfsdump: ino map phase 1: .*/xfsdump: ino map <PHASES>/' \
>>>        -e '/xfsdump: ino map phase [2]/,1d'		\
>>
> 

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-06-18 16:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-18 15:56 [PATCH] xfstests: filter out latest xfsdump version messages Brian Foster
2012-06-18 16:18 ` Eric Sandeen
2012-06-18 16:32   ` Brian Foster
2012-06-18 16:48     ` Eric Sandeen

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.