public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
From: Eryu Guan <guan@eryu.me>
To: XiaoLi Feng <xifeng@redhat.com>
Cc: fstests@vger.kernel.org
Subject: Re: [PATCH] common/rc: add _filter_scratch in _test_inode_flag
Date: Sun, 29 Nov 2020 16:12:34 +0800	[thread overview]
Message-ID: <20201129081234.GP3853@desktop> (raw)
In-Reply-To: <20201123062526.18465-1-xifeng@redhat.com>

On Mon, Nov 23, 2020 at 02:25:26PM +0800, Xiaoli Feng wrote:
> From: Xiaoli Feng <xifeng@redhat.com>
> 
> Avoid the invalid failure when the path of file include test flag.
> 
> Signed-off-by: Xiaoli Feng <xifeng@redhat.com>

Would you please elaborate this issue in more details? It seems your
SCRATCH_MNT contains a string that matches $flag so _test_inode_flag
returns a false positive. But that only fixes SCRATCH_MNT, what if
TEST_DIR contains the string as well?

Thanks,
Eryu

> ---
>  common/rc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/common/rc b/common/rc
> index b5a504e0..04080331 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -3069,7 +3069,7 @@ _test_inode_flag()
>  	local flag=$1
>  	local file=$2
>  
> -	if $XFS_IO_PROG -r -c 'lsattr -v' "$file" | grep -q "$flag" ; then
> +	if $XFS_IO_PROG -r -c 'lsattr -v' "$file" | _filter_scratch | grep -q "$flag" ; then
>  		return 0
>  	fi
>  	return 1
> -- 
> 2.18.1

  reply	other threads:[~2020-11-29  8:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-23  6:25 [PATCH] common/rc: add _filter_scratch in _test_inode_flag XiaoLi Feng
2020-11-29  8:12 ` Eryu Guan [this message]
2020-12-01 16:04   ` Xiaoli Feng

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=20201129081234.GP3853@desktop \
    --to=guan@eryu.me \
    --cc=fstests@vger.kernel.org \
    --cc=xifeng@redhat.com \
    /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