From: Zorro Lang <zlang@redhat.com>
To: Pavel Reichl <preichl@redhat.com>
Cc: fstests@vger.kernel.org, xzhou@redhat.com
Subject: Re: [PATCH 2/5] g/87,88,125,126,128,193,314,317,355: Add _require_chown/chmod
Date: Sun, 28 Mar 2021 20:11:12 +0800 [thread overview]
Message-ID: <20210328121111.GL13946@localhost.localdomain> (raw)
In-Reply-To: <20210326154134.309159-3-preichl@redhat.com>
On Fri, Mar 26, 2021 at 04:41:31PM +0100, Pavel Reichl wrote:
> Signed-off-by: Pavel Reichl <preichl@redhat.com>
> ---
> tests/generic/087 | 1 +
> tests/generic/088 | 1 +
> tests/generic/125 | 1 +
> tests/generic/126 | 1 +
> tests/generic/128 | 1 +
> tests/generic/193 | 1 +
> tests/generic/314 | 1 +
> tests/generic/317 | 1 +
> tests/generic/355 | 1 +
From my testing, generic/597[1] and generic/598[2] fails on chown and chmod too.
Thanks,
Zorro
[1]
--- /dev/fd/63 2021-03-18 05:06:27.234268437 -0400
+++ generic/597.out.bad 2021-03-18 05:06:26.964267727 -0400
@@ -1,14 +1,24 @@
QA output created by 597
+chmod: changing permissions of '/mnt/xfstests/test/597/sticky_dir': Operation not permitted
...
[2]
--- /dev/fd/63 2021-03-18 05:06:47.854322650 -0400
+++ generic/598.out.bad 2021-03-18 05:06:47.614322018 -0400
@@ -1,12 +1,21 @@
QA output created by 598
+chmod: changing permissions of '/mnt/xfstests/test/598/sticky_dir': Operation not permitted
+chown: changing ownership of '/mnt/xfstests/test/598/sticky_dir': Operation not permitted
...
> 9 files changed, 9 insertions(+)
>
> diff --git a/tests/generic/087 b/tests/generic/087
> index 1f30dbf4..c3576117 100755
> --- a/tests/generic/087
> +++ b/tests/generic/087
> @@ -37,6 +37,7 @@ _cleanup()
> # real QA test starts here
> _supported_fs generic
> _require_test
> +_require_chown
>
> QA_FS_PERMS=$here/src/fs_perms
>
> diff --git a/tests/generic/088 b/tests/generic/088
> index 9388a083..ad99bd7e 100755
> --- a/tests/generic/088
> +++ b/tests/generic/088
> @@ -29,6 +29,7 @@ _filter()
> # real QA test starts here
> _supported_fs generic
> _require_test
> +_require_chown
>
> path=$TEST_DIR/t_access
> $here/src/t_access_root $path | tee $seqres.full | _filter
> diff --git a/tests/generic/125 b/tests/generic/125
> index e84248d3..8c8f5cd7 100755
> --- a/tests/generic/125
> +++ b/tests/generic/125
> @@ -25,6 +25,7 @@ _supported_fs generic
> _require_test
> _require_user
> _require_odirect
> +_require_chmod
>
> TESTDIR=$TEST_DIR/ftrunc
> TESTFILE=$TESTDIR/ftrunc.tmp
> diff --git a/tests/generic/126 b/tests/generic/126
> index ac25d294..636ca00d 100755
> --- a/tests/generic/126
> +++ b/tests/generic/126
> @@ -27,6 +27,7 @@ _cleanup()
> # real QA test starts here
> _supported_fs generic
> _require_test
> +_require_chown
>
> QA_FS_PERMS=$here/src/fs_perms
>
> diff --git a/tests/generic/128 b/tests/generic/128
> index b3e49eff..c1eae77a 100755
> --- a/tests/generic/128
> +++ b/tests/generic/128
> @@ -24,6 +24,7 @@ _supported_fs generic
>
> _require_scratch
> _require_user
> +_require_chmod
>
> _scratch_mkfs >/dev/null 2>&1
> _scratch_mount "-o nosuid"
> diff --git a/tests/generic/193 b/tests/generic/193
> index 3125efdd..fd0ebbf6 100755
> --- a/tests/generic/193
> +++ b/tests/generic/193
> @@ -56,6 +56,7 @@ _supported_fs generic
>
> _require_test
> _require_user
> +_require_chown
>
> test_root=$TEST_DIR/$seq.$$.root
> test_user=$TEST_DIR/$seq.$$.user
> diff --git a/tests/generic/314 b/tests/generic/314
> index 03df81ce..540f0feb 100755
> --- a/tests/generic/314
> +++ b/tests/generic/314
> @@ -29,6 +29,7 @@ _cleanup()
> _supported_fs generic
> _require_test
> _require_user
> +_require_chown
>
> rm -rf $TEST_DIR/$seq-dir
>
> diff --git a/tests/generic/317 b/tests/generic/317
> index 29c37a57..289dfabe 100755
> --- a/tests/generic/317
> +++ b/tests/generic/317
> @@ -45,6 +45,7 @@ _require_scratch
> _require_user
> _require_ugid_map
> _require_userns
> +_require_chown
> qa_user_id=`id -u $qa_user`
>
> _filter_output()
> diff --git a/tests/generic/355 b/tests/generic/355
> index 161dd042..74fba0f9 100755
> --- a/tests/generic/355
> +++ b/tests/generic/355
> @@ -32,6 +32,7 @@ _supported_fs generic
> _require_test
> _require_user
> _require_odirect
> +_require_chown
>
> testfile=$TEST_DIR/$seq.test
> rm -f $testfile
> --
> 2.30.2
>
next prev parent reply other threads:[~2021-03-28 11:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-26 15:41 [PATCH 0/5] Fix some tests that fail for exfat FS Pavel Reichl
2021-03-26 15:41 ` [PATCH 1/5] common: Add _require_{chown,chmod}() Pavel Reichl
2021-03-28 15:38 ` Eryu Guan
2021-03-26 15:41 ` [PATCH 2/5] g/87,88,125,126,128,193,314,317,355: Add _require_chown/chmod Pavel Reichl
2021-03-28 12:11 ` Zorro Lang [this message]
2021-03-26 15:41 ` [PATCH 3/5] common: hide permision warning from mkswap for exfat Pavel Reichl
2021-03-26 15:41 ` [PATCH 4/5] generic/554: hide permision warning on exfat Pavel Reichl
2021-03-28 13:06 ` Zorro Lang
2021-03-28 13:12 ` Zorro Lang
2021-03-28 15:40 ` Eryu Guan
2021-03-26 15:41 ` [PATCH 5/5] generic/003: Amend the test for exfat Pavel Reichl
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=20210328121111.GL13946@localhost.localdomain \
--to=zlang@redhat.com \
--cc=fstests@vger.kernel.org \
--cc=preichl@redhat.com \
--cc=xzhou@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 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.