fstests.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Xiaoli Feng <xifeng@redhat.com>
To: "Darrick J. Wong" <darrick.wong@oracle.com>
Cc: fstests@vger.kernel.org
Subject: Re: [PATCH v1] xfs/148: fix some errors for output
Date: Fri, 6 Dec 2019 01:45:30 -0500 (EST)	[thread overview]
Message-ID: <1894952702.20019430.1575614730624.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20191204161053.GF7328@magnolia>

Hi,

----- Original Message -----
> From: "Darrick J. Wong" <darrick.wong@oracle.com>
> To: "XiaoLi Feng" <xifeng@redhat.com>
> Cc: fstests@vger.kernel.org
> Sent: Thursday, December 5, 2019 12:10:53 AM
> Subject: Re: [PATCH v1] xfs/148: fix some errors for output
> 
> On Wed, Dec 04, 2019 at 04:04:23PM +0800, XiaoLi Feng wrote:
> > From: Xiaoli Feng <xifeng@redhat.com>
> > 
> > When disable crc, the extended attributes display is different for
> > "attr -l". And there is no quotes when ls no-exist file in RHEL7. eg.
> > RHEL7:
> > ls: cannot access file: No such file or directory
> > RHEL8:
> > ls: cannot access 'file': No such file or directory
> > 
> > Signed-off-by: Xiaoli Feng <xifeng@redhat.com>
> > ---
> >  tests/xfs/148     |  2 +-
> >  tests/xfs/148.out | 17 +++++++++--------
> >  2 files changed, 10 insertions(+), 9 deletions(-)
> > 
> > diff --git a/tests/xfs/148 b/tests/xfs/148
> > index 42cfdab0..1203edd9 100755
> > --- a/tests/xfs/148
> > +++ b/tests/xfs/148
> > @@ -79,7 +79,7 @@ access_stuff() {
> >  	$ATTR_PROG -l $testfile
> >  
> >  	for name in "${test_names[@]}"; do
> > -		ls "$testdir/f_$name"
> > +		ls "$testdir/f_$name" 2>&1 | sed -e "s/'//g"
> >  		$ATTR_PROG -g "a_$name" $testfile
> >  	done
> >  }
> > diff --git a/tests/xfs/148.out b/tests/xfs/148.out
> > index c301ecb6..b1bea98a 100644
> > --- a/tests/xfs/148.out
> > +++ b/tests/xfs/148.out
> > @@ -4,10 +4,11 @@ f_another
> >  f_are_bad_for_you
> >  f_something
> >  f_too_many_beans
> > -Attribute "a_something" has a 3 byte value for TEST_DIR/mount-148/testfile
> > -Attribute "a_too_many_beans" has a 3 byte value for
> > TEST_DIR/mount-148/testfile
> >  Attribute "a_are_bad_for_you" has a 3 byte value for
> >  TEST_DIR/mount-148/testfile
> > +Attribute "a_too_many_beans" has a 3 byte value for
> > TEST_DIR/mount-148/testfile
> >  Attribute "a_another" has a 3 byte value for TEST_DIR/mount-148/testfile
> > +Attribute "a_something" has a 3 byte value for TEST_DIR/mount-148/testfile
> > +Attribute "selinux" has a 37 byte value for TEST_DIR/mount-148/testfile
> 
> The single-quot filter part is fine, but this change in the golden
> output doesn't reflect that...
> 
> --D

Just found that you already sent a patch to fix "attr -l" output order. It's better.
And sorry, I didn't understand well about "but this change in the golden output doesn't
reflect that". I tested it on RHEL8, it's pass.

> 
> >  TEST_DIR/mount-148/testdir/f_something
> >  Attribute "a_something" had a 3 byte value for
> >  TEST_DIR/mount-148/testfile:
> >  heh
> > @@ -20,10 +21,10 @@ heh
> >  TEST_DIR/mount-148/testdir/f_another
> >  Attribute "a_another" had a 3 byte value for TEST_DIR/mount-148/testfile:
> >  heh
> > -ls: cannot access 'TEST_DIR/mount-148/testdir/f_too_many': No such file or
> > directory
> > +ls: cannot access TEST_DIR/mount-148/testdir/f_too_many: No such file or
> > directory
> >  attr_get: No data available
> >  Could not get "a_too_many" for TEST_DIR/mount-148/testfile
> > -ls: cannot access 'TEST_DIR/mount-148/testdir/f_are_bad/for_you': No such
> > file or directory
> > +ls: cannot access TEST_DIR/mount-148/testdir/f_are_bad/for_you: No such
> > file or directory
> >  attr_get: No data available
> >  Could not get "a_are_bad/for_you" for TEST_DIR/mount-148/testfile
> >  ++ ACCESSING BAD METADATA
> > @@ -33,18 +34,18 @@ attr_list: Structure needs cleaning
> >  TEST_DIR/mount-148/testdir/f_something
> >  Attribute "a_something" had a 3 byte value for
> >  TEST_DIR/mount-148/testfile:
> >  heh
> > -ls: cannot access 'TEST_DIR/mount-148/testdir/f_too_many_beans': No such
> > file or directory
> > +ls: cannot access TEST_DIR/mount-148/testdir/f_too_many_beans: No such
> > file or directory
> >  attr_get: No data available
> >  Could not get "a_too_many_beans" for TEST_DIR/mount-148/testfile
> > -ls: cannot access 'TEST_DIR/mount-148/testdir/f_are_bad_for_you': No such
> > file or directory
> > +ls: cannot access TEST_DIR/mount-148/testdir/f_are_bad_for_you: No such
> > file or directory
> >  attr_get: No data available
> >  Could not get "a_are_bad_for_you" for TEST_DIR/mount-148/testfile
> >  TEST_DIR/mount-148/testdir/f_another
> >  Attribute "a_another" had a 3 byte value for TEST_DIR/mount-148/testfile:
> >  heh
> > -ls: cannot access 'TEST_DIR/mount-148/testdir/f_too_many': No such file or
> > directory
> > +ls: cannot access TEST_DIR/mount-148/testdir/f_too_many: No such file or
> > directory
> >  attr_get: No data available
> >  Could not get "a_too_many" for TEST_DIR/mount-148/testfile
> > -ls: cannot access 'TEST_DIR/mount-148/testdir/f_are_bad/for_you': No such
> > file or directory
> > +ls: cannot access TEST_DIR/mount-148/testdir/f_are_bad/for_you: No such
> > file or directory
> >  Attribute "a_are_bad/for_you" had a 3 byte value for
> >  TEST_DIR/mount-148/testfile:
> >  heh
> > --
> > 2.18.1
> > 
> 
> 


      reply	other threads:[~2019-12-06  6:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-04  8:04 [PATCH v1] xfs/148: fix some errors for output XiaoLi Feng
2019-12-04 16:10 ` Darrick J. Wong
2019-12-06  6:45   ` Xiaoli Feng [this message]

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=1894952702.20019430.1575614730624.JavaMail.zimbra@redhat.com \
    --to=xifeng@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).