All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH] statx04: skip test on ntfs filesystem
@ 2022-08-24  8:09 Avinesh Kumar
  2022-08-26  3:02 ` xuyang2018.jy
  0 siblings, 1 reply; 4+ messages in thread
From: Avinesh Kumar @ 2022-08-24  8:09 UTC (permalink / raw)
  To: ltp

Fixes: #956

Reported-by: pragat220
Signed-off-by: Avinesh Kumar <akumar@suse.de>
---
 testcases/kernel/syscalls/statx/statx04.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/testcases/kernel/syscalls/statx/statx04.c b/testcases/kernel/syscalls/statx/statx04.c
index 98f9a6315..3923b7f8e 100644
--- a/testcases/kernel/syscalls/statx/statx04.c
+++ b/testcases/kernel/syscalls/statx/statx04.c
@@ -132,6 +132,7 @@ static struct tst_test test = {
 	.min_kver = "4.11",
 	.skip_filesystems = (const char *const[]) {
 		"fuse",
+		"ntfs",
 		NULL
 	},
 	.tags = (const struct tst_tag[]) {
-- 
2.37.1


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH] statx04: skip test on ntfs filesystem
  2022-08-24  8:09 [LTP] [PATCH] statx04: skip test on ntfs filesystem Avinesh Kumar
@ 2022-08-26  3:02 ` xuyang2018.jy
  2022-09-07 14:54   ` Petr Vorel
  0 siblings, 1 reply; 4+ messages in thread
From: xuyang2018.jy @ 2022-08-26  3:02 UTC (permalink / raw)
  To: Avinesh Kumar, ltp

Hi Avinesh

I just want to know whether this patch was verified by pragat22
or you?

ps: I don't have environment to test this.

Best Regards
Yang Xu
> Fixes: #956
> 
> Reported-by: pragat220
> Signed-off-by: Avinesh Kumar <akumar@suse.de>
> ---
>   testcases/kernel/syscalls/statx/statx04.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/testcases/kernel/syscalls/statx/statx04.c b/testcases/kernel/syscalls/statx/statx04.c
> index 98f9a6315..3923b7f8e 100644
> --- a/testcases/kernel/syscalls/statx/statx04.c
> +++ b/testcases/kernel/syscalls/statx/statx04.c
> @@ -132,6 +132,7 @@ static struct tst_test test = {
>   	.min_kver = "4.11",
>   	.skip_filesystems = (const char *const[]) {
>   		"fuse",
> +		"ntfs",
>   		NULL
>   	},
>   	.tags = (const struct tst_tag[]) {

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH] statx04: skip test on ntfs filesystem
  2022-08-26  3:02 ` xuyang2018.jy
@ 2022-09-07 14:54   ` Petr Vorel
  2022-09-07 16:37     ` Petr Vorel
  0 siblings, 1 reply; 4+ messages in thread
From: Petr Vorel @ 2022-09-07 14:54 UTC (permalink / raw)
  To: xuyang2018.jy; +Cc: ltp

Hi all,

@Avinesh: it's always better to put the explanation *why* to git commit message.
Adding just a ticket is not enough.

Reviewed-by: Petr Vorel <pvorel@suse.cz>

> Hi Avinesh

> I just want to know whether this patch was verified by pragat22
> or you?

> ps: I don't have environment to test this.
You can test it:
# LTP_SINGLE_FS_TYPE=ntfs ./statx04

I have tested this on various systems without setting LTP_SINGLE_FS_TYPE, most
of them are skipped due "fuse", but on Alpine with v2022.5.17 (libntfs-3g) it is
*not* caught:

# ./statx04
tst_supported_fs_types.c:89: TINFO: Kernel supports ntfs
tst_supported_fs_types.c:51: TINFO: mkfs.ntfs does exist
...
tst_test.c:1599: TINFO: === Testing on ntfs ===
tst_test.c:1064: TINFO: Formatting /dev/loop0 with ntfs opts='' extra opts=''
The partition start sector was not specified for /dev/loop0 and it could not be obtained automatically.  It has been set to 0.
The number of sectors per track was not specified for /dev/loop0 and it could not be obtained automatically.  It has been set to 0.
The number of heads was not specified for /dev/loop0 and it could not be obtained automatically.  It has been set to 0.
To boot from a device, Windows needs the 'partition start sector', the 'sectors per track' and the 'number of heads' to be set.
Windows will not be able to boot from this device.
tst_test.c:1078: TINFO: Trying FUSE...
statx04.c:93: TBROK: Unexpected ioctl() error: EINVAL (22)

Please do not merge this, I've ask the reported for name and email (so that I
can put his credential) and also put some extra info (explanation why fuse is
not enough).

Kind regards,
Petr

> Best Regards
> Yang Xu
> > Fixes: #956

> > Reported-by: pragat220
> > Signed-off-by: Avinesh Kumar <akumar@suse.de>
> > ---
> >   testcases/kernel/syscalls/statx/statx04.c | 1 +
> >   1 file changed, 1 insertion(+)

> > diff --git a/testcases/kernel/syscalls/statx/statx04.c b/testcases/kernel/syscalls/statx/statx04.c
> > index 98f9a6315..3923b7f8e 100644
> > --- a/testcases/kernel/syscalls/statx/statx04.c
> > +++ b/testcases/kernel/syscalls/statx/statx04.c
> > @@ -132,6 +132,7 @@ static struct tst_test test = {
> >   	.min_kver = "4.11",
> >   	.skip_filesystems = (const char *const[]) {
> >   		"fuse",
> > +		"ntfs",
> >   		NULL
> >   	},
> >   	.tags = (const struct tst_tag[]) {

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH] statx04: skip test on ntfs filesystem
  2022-09-07 14:54   ` Petr Vorel
@ 2022-09-07 16:37     ` Petr Vorel
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Vorel @ 2022-09-07 16:37 UTC (permalink / raw)
  To: xuyang2018.jy, ltp

Hi,

FYI fix merged.
Thanks!

Kind regards,
Petr

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

end of thread, other threads:[~2022-09-07 16:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24  8:09 [LTP] [PATCH] statx04: skip test on ntfs filesystem Avinesh Kumar
2022-08-26  3:02 ` xuyang2018.jy
2022-09-07 14:54   ` Petr Vorel
2022-09-07 16:37     ` Petr Vorel

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.