From: Wei Gao via ltp <ltp@lists.linux.it>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v3 3/4] Update test cases use new needs_cmds
Date: Fri, 10 Oct 2025 06:45:49 +0000 [thread overview]
Message-ID: <20251010064745.31361-4-wegao@suse.com> (raw)
In-Reply-To: <20251010064745.31361-1-wegao@suse.com>
Signed-off-by: Wei Gao <wegao@suse.com>
---
lib/newlib_tests/tst_needs_cmds01.c | 16 ++++++++--------
lib/newlib_tests/tst_needs_cmds02.c | 6 +++---
lib/newlib_tests/tst_needs_cmds03.c | 6 +++---
lib/newlib_tests/tst_needs_cmds04.c | 6 +++---
lib/newlib_tests/tst_needs_cmds05.c | 6 +++---
lib/newlib_tests/tst_needs_cmds06.c | 6 +++---
lib/newlib_tests/tst_needs_cmds07.c | 6 +++---
lib/newlib_tests/tst_needs_cmds08.c | 8 ++++----
testcases/kernel/device-drivers/zram/zram03.c | 8 ++++----
testcases/kernel/fs/squashfs/squashfs01.c | 6 +++---
testcases/kernel/security/aslr/aslr01.c | 6 +++---
testcases/kernel/syscalls/add_key/add_key05.c | 10 +++++-----
testcases/kernel/syscalls/fanotify/fanotify22.c | 6 +++---
testcases/kernel/syscalls/ioctl/ioctl09.c | 6 +++---
testcases/kernel/syscalls/madvise/madvise11.c | 8 ++++----
testcases/kernel/syscalls/quotactl/quotactl01.c | 6 +++---
testcases/kernel/syscalls/quotactl/quotactl04.c | 6 +++---
testcases/kernel/syscalls/quotactl/quotactl06.c | 6 +++---
testcases/kernel/syscalls/quotactl/quotactl08.c | 6 +++---
testcases/kernel/syscalls/quotactl/quotactl09.c | 6 +++---
testcases/kernel/syscalls/statx/statx05.c | 8 ++++----
testcases/kernel/syscalls/statx/statx07.c | 6 +++---
testcases/kernel/syscalls/statx/statx09.c | 6 +++---
23 files changed, 80 insertions(+), 80 deletions(-)
diff --git a/lib/newlib_tests/tst_needs_cmds01.c b/lib/newlib_tests/tst_needs_cmds01.c
index 777c69505..592456da6 100644
--- a/lib/newlib_tests/tst_needs_cmds01.c
+++ b/lib/newlib_tests/tst_needs_cmds01.c
@@ -12,13 +12,13 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4",
- "mkfs.ext4 >= 1.0.0",
- "mkfs.ext4 <= 2.0.0",
- "mkfs.ext4 != 2.0.0",
- "mkfs.ext4 > 1.0.0",
- "mkfs.ext4 < 2.0.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4"},
+ {.cmd = "mkfs.ext4 >= 1.0.0"},
+ {.cmd = "mkfs.ext4 <= 2.0.0"},
+ {.cmd = "mkfs.ext4 != 2.0.0"},
+ {.cmd = "mkfs.ext4 > 1.0.0"},
+ {.cmd = "mkfs.ext4 < 2.0.0"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds02.c b/lib/newlib_tests/tst_needs_cmds02.c
index 455a275ea..f1d6105c2 100644
--- a/lib/newlib_tests/tst_needs_cmds02.c
+++ b/lib/newlib_tests/tst_needs_cmds02.c
@@ -16,8 +16,8 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext45 >= 1.43.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext45 >= 1.43.0"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds03.c b/lib/newlib_tests/tst_needs_cmds03.c
index bdc1cdf6a..ac5f368e2 100644
--- a/lib/newlib_tests/tst_needs_cmds03.c
+++ b/lib/newlib_tests/tst_needs_cmds03.c
@@ -16,8 +16,8 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 ! 1.43.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 ! 1.43.0"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds04.c b/lib/newlib_tests/tst_needs_cmds04.c
index de10b8f3e..2aea51772 100644
--- a/lib/newlib_tests/tst_needs_cmds04.c
+++ b/lib/newlib_tests/tst_needs_cmds04.c
@@ -16,8 +16,8 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 > 1.43",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 > 1.43"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds05.c b/lib/newlib_tests/tst_needs_cmds05.c
index c3b2b3b9a..969d4e2f5 100644
--- a/lib/newlib_tests/tst_needs_cmds05.c
+++ b/lib/newlib_tests/tst_needs_cmds05.c
@@ -16,8 +16,8 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 > 1.43.0-1",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 > 1.43.0-1"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds06.c b/lib/newlib_tests/tst_needs_cmds06.c
index 40b1cf09c..91470ccf9 100644
--- a/lib/newlib_tests/tst_needs_cmds06.c
+++ b/lib/newlib_tests/tst_needs_cmds06.c
@@ -16,8 +16,8 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 > 1.43.0 2",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 > 1.43.0 2"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds07.c b/lib/newlib_tests/tst_needs_cmds07.c
index d0b4ce2ff..371bbdc1b 100644
--- a/lib/newlib_tests/tst_needs_cmds07.c
+++ b/lib/newlib_tests/tst_needs_cmds07.c
@@ -16,8 +16,8 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.ext45",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext45"},
+ {}
}
};
diff --git a/lib/newlib_tests/tst_needs_cmds08.c b/lib/newlib_tests/tst_needs_cmds08.c
index 38df2ef6d..412f9f293 100644
--- a/lib/newlib_tests/tst_needs_cmds08.c
+++ b/lib/newlib_tests/tst_needs_cmds08.c
@@ -18,9 +18,9 @@ static void do_test(void)
static struct tst_test test = {
.test_all = do_test,
- .needs_cmds = (const char *[]) {
- "mkfs.xfs",
- "mkfs.xfs >= 4.20.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.xfs"},
+ {.cmd = "mkfs.xfs >= 4.20.0"},
+ {}
}
};
diff --git a/testcases/kernel/device-drivers/zram/zram03.c b/testcases/kernel/device-drivers/zram/zram03.c
index 8cf26de4c..4dcf23b4e 100644
--- a/testcases/kernel/device-drivers/zram/zram03.c
+++ b/testcases/kernel/device-drivers/zram/zram03.c
@@ -240,9 +240,9 @@ static struct tst_test test = {
"zram",
NULL
},
- .needs_cmds = (const char *[]) {
- "modprobe",
- "rmmod",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "modprobe"},
+ {.cmd = "rmmod"},
+ {}
}
};
diff --git a/testcases/kernel/fs/squashfs/squashfs01.c b/testcases/kernel/fs/squashfs/squashfs01.c
index fbcb76582..7a548d62c 100644
--- a/testcases/kernel/fs/squashfs/squashfs01.c
+++ b/testcases/kernel/fs/squashfs/squashfs01.c
@@ -102,9 +102,9 @@ static struct tst_test test = {
.needs_root = 1,
.needs_device = 1,
.dev_min_size = 1,
- .needs_cmds = (const char *const []) {
- "mksquashfs",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mksquashfs"},
+ {}
},
.needs_drivers = (const char *const []) {
"squashfs",
diff --git a/testcases/kernel/security/aslr/aslr01.c b/testcases/kernel/security/aslr/aslr01.c
index 6a396e29d..e6feb2d3c 100644
--- a/testcases/kernel/security/aslr/aslr01.c
+++ b/testcases/kernel/security/aslr/aslr01.c
@@ -277,8 +277,8 @@ static struct tst_test test = {
"CONFIG_HAVE_ARCH_MMAP_RND_BITS=y",
NULL
},
- .needs_cmds = (const char *[]) {
- "ldd",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "ldd"},
+ {}
},
};
diff --git a/testcases/kernel/syscalls/add_key/add_key05.c b/testcases/kernel/syscalls/add_key/add_key05.c
index c9a2f840e..b51a84b97 100644
--- a/testcases/kernel/syscalls/add_key/add_key05.c
+++ b/testcases/kernel/syscalls/add_key/add_key05.c
@@ -231,11 +231,11 @@ static struct tst_test test = {
{&user_buf, .size = 64},
{}
},
- .needs_cmds = (const char *const []) {
- "useradd",
- "userdel",
- "groupdel",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "useradd"},
+ {.cmd = "userdel"},
+ {.cmd = "groupdel"},
+ {}
},
.tags = (const struct tst_tag[]) {
{"linux-git", "a08bf91ce28"},
diff --git a/testcases/kernel/syscalls/fanotify/fanotify22.c b/testcases/kernel/syscalls/fanotify/fanotify22.c
index 357e74dbc..6578474a7 100644
--- a/testcases/kernel/syscalls/fanotify/fanotify22.c
+++ b/testcases/kernel/syscalls/fanotify/fanotify22.c
@@ -327,9 +327,9 @@ static struct tst_test test = {
{"linux-git", "76486b104168"},
{}
},
- .needs_cmds = (const char *[]) {
- "debugfs",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "debugfs"},
+ {}
}
};
diff --git a/testcases/kernel/syscalls/ioctl/ioctl09.c b/testcases/kernel/syscalls/ioctl/ioctl09.c
index f86355f2c..1bd60fc84 100644
--- a/testcases/kernel/syscalls/ioctl/ioctl09.c
+++ b/testcases/kernel/syscalls/ioctl/ioctl09.c
@@ -108,9 +108,9 @@ static struct tst_test test = {
"loop",
NULL
},
- .needs_cmds = (const char *const []) {
- "parted",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "parted"},
+ {}
},
.needs_tmpdir = 1,
};
diff --git a/testcases/kernel/syscalls/madvise/madvise11.c b/testcases/kernel/syscalls/madvise/madvise11.c
index 422589f5b..73d2d4294 100644
--- a/testcases/kernel/syscalls/madvise/madvise11.c
+++ b/testcases/kernel/syscalls/madvise/madvise11.c
@@ -421,10 +421,10 @@ static struct tst_test test = {
HW_MODULE,
NULL
},
- .needs_cmds = (const char *[]) {
- "modprobe",
- "rmmod",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "modprobe"},
+ {.cmd = "rmmod"},
+ {}
},
.needs_kconfigs = (const char *[]) {
"CONFIG_MEMORY_FAILURE=y",
diff --git a/testcases/kernel/syscalls/quotactl/quotactl01.c b/testcases/kernel/syscalls/quotactl/quotactl01.c
index 9dcf74ceb..3091ac5bf 100644
--- a/testcases/kernel/syscalls/quotactl/quotactl01.c
+++ b/testcases/kernel/syscalls/quotactl/quotactl01.c
@@ -223,9 +223,9 @@ static struct tst_test test = {
{}
},
.mntpoint = MNTPOINT,
- .needs_cmds = (const char *const []) {
- "quotacheck",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "quotacheck"},
+ {}
},
.setup = setup,
.cleanup = cleanup,
diff --git a/testcases/kernel/syscalls/quotactl/quotactl04.c b/testcases/kernel/syscalls/quotactl/quotactl04.c
index d2d7b3f3e..a70903330 100644
--- a/testcases/kernel/syscalls/quotactl/quotactl04.c
+++ b/testcases/kernel/syscalls/quotactl/quotactl04.c
@@ -165,8 +165,8 @@ static struct tst_test test = {
},
.mntpoint = MNTPOINT,
.test_variants = QUOTACTL_SYSCALL_VARIANTS,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 >= 1.43.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 >= 1.43.0"},
+ {}
}
};
diff --git a/testcases/kernel/syscalls/quotactl/quotactl06.c b/testcases/kernel/syscalls/quotactl/quotactl06.c
index 110a3aa9b..333f5720d 100644
--- a/testcases/kernel/syscalls/quotactl/quotactl06.c
+++ b/testcases/kernel/syscalls/quotactl/quotactl06.c
@@ -226,9 +226,9 @@ static struct tst_test test = {
},
.mntpoint = MNTPOINT,
.mount_device = 1,
- .needs_cmds = (const char *const []) {
- "quotacheck",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "quotacheck"},
+ {}
},
.needs_root = 1,
.test_variants = QUOTACTL_FMT_VARIANTS,
diff --git a/testcases/kernel/syscalls/quotactl/quotactl08.c b/testcases/kernel/syscalls/quotactl/quotactl08.c
index 63087345f..ce7a8b008 100644
--- a/testcases/kernel/syscalls/quotactl/quotactl08.c
+++ b/testcases/kernel/syscalls/quotactl/quotactl08.c
@@ -220,8 +220,8 @@ static struct tst_test test = {
.setup = setup,
.cleanup = cleanup,
.test_variants = QUOTACTL_SYSCALL_VARIANTS,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 >= 1.43.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 >= 1.43.0"},
+ {}
}
};
diff --git a/testcases/kernel/syscalls/quotactl/quotactl09.c b/testcases/kernel/syscalls/quotactl/quotactl09.c
index 673666347..fd6629c0c 100644
--- a/testcases/kernel/syscalls/quotactl/quotactl09.c
+++ b/testcases/kernel/syscalls/quotactl/quotactl09.c
@@ -185,8 +185,8 @@ static struct tst_test test = {
.mount_device = 1,
.needs_root = 1,
.test_variants = QUOTACTL_SYSCALL_VARIANTS,
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 >= 1.43.0",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 >= 1.43.0"},
+ {}
}
};
diff --git a/testcases/kernel/syscalls/statx/statx05.c b/testcases/kernel/syscalls/statx/statx05.c
index 2a4603226..07b5e7b94 100644
--- a/testcases/kernel/syscalls/statx/statx05.c
+++ b/testcases/kernel/syscalls/statx/statx05.c
@@ -123,9 +123,9 @@ static struct tst_test test = {
{.type = "ext4"},
{}
},
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 >= 1.43.0",
- "e4crypt",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 >= 1.43.0"},
+ {.cmd = "e4crypt"},
+ {}
}
};
diff --git a/testcases/kernel/syscalls/statx/statx07.c b/testcases/kernel/syscalls/statx/statx07.c
index bab64591f..755644cf9 100644
--- a/testcases/kernel/syscalls/statx/statx07.c
+++ b/testcases/kernel/syscalls/statx/statx07.c
@@ -171,8 +171,8 @@ static struct tst_test test = {
{}
},
.needs_root = 1,
- .needs_cmds = (const char *[]) {
- "exportfs",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "exportfs"},
+ {}
}
};
diff --git a/testcases/kernel/syscalls/statx/statx09.c b/testcases/kernel/syscalls/statx/statx09.c
index ee4be4250..8838d5450 100644
--- a/testcases/kernel/syscalls/statx/statx09.c
+++ b/testcases/kernel/syscalls/statx/statx09.c
@@ -162,8 +162,8 @@ static struct tst_test test = {
"CONFIG_FS_VERITY",
NULL
},
- .needs_cmds = (const char *[]) {
- "mkfs.ext4 >= 1.45.2",
- NULL
+ .needs_cmds = (struct tst_cmd[]) {
+ {.cmd = "mkfs.ext4 >= 1.45.2"},
+ {}
}
};
--
2.51.0
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2025-10-10 6:49 UTC|newest]
Thread overview: 100+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-26 8:50 [LTP] [PATCH v1 0/2] new cmd support option for needs_cmds Wei Gao via ltp
2025-09-26 8:50 ` [LTP] [PATCH v1 1/2] lib: Add support option for .needs_cmds Wei Gao via ltp
2025-09-26 9:31 ` Cyril Hrubis
2025-09-26 8:50 ` [LTP] [PATCH v1 2/2] ioctl_loop01.c: Update to new .needs_cmds struct Wei Gao via ltp
2025-09-26 9:32 ` Cyril Hrubis
2025-09-28 23:26 ` [LTP] [PATCH v1 0/2] new cmd support option for needs_cmds Wei Gao via ltp
2025-09-28 23:26 ` [LTP] [PATCH v2 1/2] lib: Add support option for .needs_cmds Wei Gao via ltp
2025-09-30 13:36 ` Petr Vorel
2025-10-10 6:32 ` Wei Gao via ltp
2025-10-10 6:45 ` [LTP] [PATCH v3 0/4] new cmd support option for needs_cmds Wei Gao via ltp
2025-10-10 6:45 ` [LTP] [PATCH v3 1/4] lib: Add support option for .needs_cmds Wei Gao via ltp
2025-10-10 9:13 ` Petr Vorel
2025-10-10 9:45 ` Petr Vorel
2025-10-10 6:45 ` [LTP] [PATCH v3 2/4] ioctl_loop01.c: Update to new .needs_cmds struct Wei Gao via ltp
2025-10-10 6:45 ` Wei Gao via ltp [this message]
2025-10-10 6:45 ` [LTP] [PATCH v3 4/4] tst_run_shell.c: Add new function handle new needs_cmds Wei Gao via ltp
2025-10-17 10:09 ` [LTP] [PATCH v4 0/3] new cmd support option for needs_cmds Wei Gao via ltp
2025-10-17 10:09 ` [LTP] [PATCH v4 1/3] lib: Add support option for .needs_cmds Wei Gao via ltp
2025-10-17 14:35 ` Petr Vorel
2025-10-20 1:22 ` Wei Gao via ltp
2025-10-20 13:21 ` Petr Vorel
2025-10-21 3:42 ` Wei Gao via ltp
2025-10-22 9:23 ` Li Wang via ltp
2025-10-22 14:19 ` Wei Gao via ltp
2025-10-17 15:37 ` Petr Vorel
2025-10-20 1:24 ` Wei Gao via ltp
2025-10-20 13:33 ` Petr Vorel
2025-10-21 3:17 ` Wei Gao via ltp
2025-10-17 10:09 ` [LTP] [PATCH v4 2/3] Update test cases use new needs_cmds Wei Gao via ltp
2025-10-17 10:09 ` [LTP] [PATCH v4 3/3] tst_run_shell.c: Add new function handle " Wei Gao via ltp
2025-10-17 15:30 ` Petr Vorel
2025-10-17 15:41 ` Petr Vorel
2025-10-20 1:41 ` Wei Gao via ltp
2025-11-07 0:30 ` [LTP] [PATCH v4 0/4] new cmd support option for needs_cmds Wei Gao via ltp
2025-11-07 0:30 ` [LTP] [PATCH v4 1/4] tst_cmd.c: Check brk_nosupp when tst_get_path failed Wei Gao via ltp
2025-11-07 10:33 ` Petr Vorel
2025-11-07 0:30 ` [LTP] [PATCH v4 2/4] lib: Add support option for .needs_cmds Wei Gao via ltp
2025-11-07 0:30 ` [LTP] [PATCH v4 3/4] ioctl_loop01.c: Add new support .needs_cmds Wei Gao via ltp
2025-11-07 11:04 ` Petr Vorel
2025-11-08 12:58 ` Wei Gao via ltp
2025-11-07 0:30 ` [LTP] [PATCH v4 4/4] shell_loader_cmd.sh: New test case check needs_cmds Wei Gao via ltp
2025-11-07 11:41 ` Petr Vorel
2025-11-10 2:47 ` [LTP] [PATCH v5 0/3] new cmd support option for needs_cmds Wei Gao via ltp
2025-11-10 2:47 ` [LTP] [PATCH v5 1/3] lib: Add support option for .needs_cmds Wei Gao via ltp
2025-11-11 11:06 ` Petr Vorel
2025-12-12 10:30 ` Cyril Hrubis
2025-12-12 11:16 ` Petr Vorel
2025-12-15 7:33 ` Wei Gao via ltp
2025-12-15 9:36 ` Petr Vorel
2025-12-15 10:59 ` Wei Gao via ltp
2025-12-17 13:18 ` Petr Vorel
2026-01-07 8:05 ` Petr Vorel
2025-11-10 2:47 ` [LTP] [PATCH v5 2/3] ioctl_loop01.c: Add new support .needs_cmds Wei Gao via ltp
2025-11-11 11:14 ` Petr Vorel
2025-11-10 2:47 ` [LTP] [PATCH v5 3/3] shell_loader_cmd.sh: New test case check needs_cmds Wei Gao via ltp
2025-11-11 10:41 ` Wei Gao via ltp
2025-11-11 11:15 ` Petr Vorel
2025-12-23 2:08 ` [LTP] [PATCH v6 0/4] new cmd support option for needs_cmds Wei Gao via ltp
2025-12-23 2:08 ` [LTP] [PATCH v6 1/4] lib: Add support option for .needs_cmds Wei Gao via ltp
2026-01-05 13:48 ` Petr Vorel
2026-01-06 10:01 ` Cyril Hrubis
2025-12-23 2:08 ` [LTP] [PATCH v6 2/4] tst_test.c: Add tst_cmd_present check if a command is present Wei Gao via ltp
2026-01-05 13:52 ` Petr Vorel
2026-01-06 10:02 ` Cyril Hrubis
2026-01-07 6:16 ` Wei Gao via ltp
2026-01-07 8:09 ` Petr Vorel
2026-01-07 8:27 ` Petr Vorel
2026-01-07 9:59 ` Cyril Hrubis
2026-01-09 6:11 ` Wei Gao via ltp
2026-01-12 11:05 ` Petr Vorel
2026-01-07 9:56 ` Cyril Hrubis
2025-12-23 2:08 ` [LTP] [PATCH v6 3/4] ioctl_loop01.c: Add new support .needs_cmds Wei Gao via ltp
2026-01-05 13:56 ` Petr Vorel
2025-12-23 2:08 ` [LTP] [PATCH v6 4/4] shell_loader_cmd.sh: New test case check needs_cmds Wei Gao via ltp
2026-01-05 13:57 ` Petr Vorel
2026-01-09 6:16 ` [LTP] [PATCH v7 0/4] new cmd support option for needs_cmds Wei Gao via ltp
2026-01-09 6:16 ` [LTP] [PATCH v7 1/4] lib: Add support option for .needs_cmds Wei Gao via ltp
2026-01-09 19:15 ` Petr Vorel
2026-01-09 19:21 ` Petr Vorel
2026-01-16 14:03 ` Li Wang via ltp
2026-01-19 14:51 ` Cyril Hrubis
2026-01-20 6:42 ` Petr Vorel
2026-01-09 6:16 ` [LTP] [PATCH v7 2/4] tst_test.c: Add tst_cmd_present check if a command is present Wei Gao via ltp
2026-01-09 19:17 ` Petr Vorel
2026-01-12 11:08 ` Petr Vorel
2026-01-16 13:58 ` Li Wang via ltp
2026-01-19 13:17 ` Cyril Hrubis
2026-01-09 6:16 ` [LTP] [PATCH v7 3/4] ioctl_loop01.c: Add new support .needs_cmds Wei Gao via ltp
2026-01-16 13:25 ` Li Wang via ltp
2026-01-17 13:16 ` Wei Gao via ltp
2026-01-19 3:00 ` Li Wang via ltp
2026-01-19 5:34 ` Wei Gao via ltp
2026-01-19 6:27 ` Li Wang via ltp
2026-01-19 14:57 ` Cyril Hrubis
2026-01-21 13:08 ` Cyril Hrubis
2026-01-09 6:16 ` [LTP] [PATCH v7 4/4] shell_loader_cmd.sh: New test case check needs_cmds Wei Gao via ltp
2026-01-21 13:09 ` Cyril Hrubis
2026-01-21 13:11 ` Petr Vorel
2025-09-28 23:26 ` [LTP] [PATCH v2 2/2] ioctl_loop01.c: Update to new .needs_cmds struct Wei Gao via ltp
2025-09-30 13:12 ` Petr Vorel
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=20251010064745.31361-4-wegao@suse.com \
--to=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