public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Petr Vorel <pvorel@suse.cz>
To: Wei Gao <wegao@suse.com>
Cc: Jan Kara <jack@suse.cz>, ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v3] ioctl_loop01.c: Use proper device for partitioning
Date: Thu, 18 Sep 2025 16:53:35 +0200	[thread overview]
Message-ID: <20250918145335.GA432906@pevik> (raw)
In-Reply-To: <aMDV1aTCZ--ElqfY@localhost>

> On Tue, Sep 09, 2025 at 01:50:30PM +0200, Cyril Hrubis wrote:
> > Hi!
> > >  .../kernel/syscalls/ioctl/ioctl_loop01.c      | 34 ++++++++-----------
> > >  1 file changed, 15 insertions(+), 19 deletions(-)

> > > diff --git a/testcases/kernel/syscalls/ioctl/ioctl_loop01.c b/testcases/kernel/syscalls/ioctl/ioctl_loop01.c
> > > index c9137bf1e..b70e9fc22 100644
> > > --- a/testcases/kernel/syscalls/ioctl/ioctl_loop01.c
> > > +++ b/testcases/kernel/syscalls/ioctl/ioctl_loop01.c
> > > @@ -78,7 +78,21 @@ static void check_loop_value(int set_flag, int get_flag, int autoclear_field)

> > >  static void verify_ioctl_loop(void)
> > >  {
> > > +	int ret;
> > > +	const char *const cmd_parted[] = {"parted", "-s", dev_path, "mklabel", "msdos", "mkpart",
> > > +					"primary", "ext4", "1M", "10M", NULL};
> > > +
> > > +	tst_fill_file("test.img", 0, 1024 * 1024, 10);
> > >  	tst_attach_device(dev_path, "test.img");
> > > +
> > > +	ret = tst_cmd(cmd_parted, NULL, NULL, TST_CMD_PASS_RETVAL);
> > > +	if (!ret)
> > > +		parted_sup = 1;
> > > +	else if (ret == 255)
> > > +		tst_res(TCONF, "parted binary not installed or failed");
> > > +	else
> > > +		tst_res(TCONF, "parted exited with %i", ret);

> > The test should have needs_cmds set to parted (we do that properly in
> > ioctl09.c) then we do not have to handle the 255 exit code here since
> > the test would be skipped if it's missing.

> If we use needs_cmds all the check will be skipped in this case.

@Cyril: only single test require 'parted' as I reported in v1 [1].
Yeah, code gets slightly more complicated just because single test requires
parted. Or you would not care? IMHO it does not make sense to split test into
two (too much duplicity).

But TINFO message should be turned in TCONF so that people notice.
tst_res(TINFO, "Current environment doesn't have parted disk, skip it");

Kind regards,
Petr

[1] https://lore.kernel.org/ltp/20250901103805.GA30224@pevik/

> Current test case will still continue do some check even parted is
> missing. Such as following test log:

> tst_tmpdir.c:316: TINFO: Using /tmp/LTP_iocxxPKhg as tmpdir (ext2/ext3/ext4 filesystem)
> tst_test.c:2004: TINFO: LTP version: 20250130-399-g47167e082
> tst_test.c:2007: TINFO: Tested kernel: 6.11.0-1027-oem #27-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 06:12:35 UTC 2025 x86_64
> tst_kconfig.c:88: TINFO: Parsing kernel config '/lib/modules/6.11.0-1027-oem/build/.config'
> tst_test.c:1825: TINFO: Overall timeout per run is 0h 00m 31s
> tst_device.c:98: TINFO: Found free device 14 '/dev/loop14'
> tst_buffers.c:57: TINFO: Test is using guarded buffers
> ioctl_loop01.c:92: TCONF: parted binary not installed or failed
> ioctl_loop01.c:98: TPASS: /sys/block/loop14/loop/partscan = 0
> ioctl_loop01.c:99: TPASS: /sys/block/loop14/loop/autoclear = 0
> ioctl_loop01.c:100: TPASS: /sys/block/loop14/loop/backing_file = '/tmp/LTP_iocxxPKhg/test.img'
> ioctl_loop01.c:56: TPASS: get expected lo_flag 12
> ioctl_loop01.c:58: TPASS: /sys/block/loop14/loop/partscan = 1
> ioctl_loop01.c:59: TPASS: /sys/block/loop14/loop/autoclear = 1
> ioctl_loop01.c:62: TINFO: Current environment doesn't have parted disk, skip it
> ioctl_loop01.c:104: TINFO: Test flag can be clear
> ioctl_loop01.c:56: TPASS: get expected lo_flag 8
> ioctl_loop01.c:58: TPASS: /sys/block/loop14/loop/partscan = 1
> ioctl_loop01.c:59: TPASS: /sys/block/loop14/loop/autoclear = 0
> ioctl_loop01.c:62: TINFO: Current environment doesn't have parted disk, skip it

> Summary:
> passed   9
> failed   0
> broken   0
> skipped  1
> warnings 0


> > -- 
> > Cyril Hrubis
> > chrubis@suse.cz

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

  reply	other threads:[~2025-09-18 14:53 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-01  7:47 [LTP] [PATCH v1] ioctl_loop01.c: Use proper device for partitioning Wei Gao via ltp
2025-09-01 10:38 ` Petr Vorel
2025-09-02  2:16   ` Wei Gao via ltp
2025-09-02  3:12 ` [LTP] [PATCH v2] " Wei Gao via ltp
2025-09-02 10:44   ` Petr Vorel
2025-09-02 11:18   ` [LTP] [PATCH v3] " Wei Gao via ltp
2025-09-03 12:48     ` Petr Vorel
2025-09-09 11:50     ` Cyril Hrubis
2025-09-10  1:35       ` Wei Gao via ltp
2025-09-18 14:53         ` Petr Vorel [this message]
2025-09-18 15:35           ` Cyril Hrubis
2025-09-19 13:22             ` Petr Vorel
2025-09-22  7:28               ` Cyril Hrubis
2025-09-22  7:32                 ` Petr Vorel
2025-09-24  2:26             ` Wei Gao via ltp
2025-09-24  7:03               ` Petr Vorel
2025-09-24  9:54               ` Cyril Hrubis
2025-09-24 10:40                 ` Wei Gao via ltp
2025-09-24 10:54                   ` Cyril Hrubis
2025-09-24 12:55                     ` Petr Vorel
2025-09-24 13:17                       ` Cyril Hrubis

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=20250918145335.GA432906@pevik \
    --to=pvorel@suse.cz \
    --cc=jack@suse.cz \
    --cc=ltp@lists.linux.it \
    --cc=wegao@suse.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