public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] eventfd06: add AIO support check
@ 2025-01-21  8:22 Li Wang
  2025-01-21  9:26 ` Petr Vorel
  2025-01-21 16:14 ` Cyril Hrubis
  0 siblings, 2 replies; 6+ messages in thread
From: Li Wang @ 2025-01-21  8:22 UTC (permalink / raw)
  To: ltp

Just like what we did for io_setup01.c to avoid ENOSYS error:
  eventfd06.c:140: TBROK: io_setup() failed: ENOSYS

Signed-off-by: Li Wang <liwang@redhat.com>
---
 testcases/kernel/syscalls/eventfd/eventfd06.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/testcases/kernel/syscalls/eventfd/eventfd06.c b/testcases/kernel/syscalls/eventfd/eventfd06.c
index 7339dd471..46d7f73d3 100644
--- a/testcases/kernel/syscalls/eventfd/eventfd06.c
+++ b/testcases/kernel/syscalls/eventfd/eventfd06.c
@@ -136,6 +136,8 @@ static void test_poll(void)
 static void setup(void)
 {
 	TEST(io_setup(MAXEVENTS, &ctx));
+	if (TST_RET == -ENOSYS)
+		tst_brk(TCONF | TRERRNO, "io_setup(): AIO not supported by kernel");
 	if (TST_RET < 0)
 		tst_brk(TBROK, "io_setup() failed: %s", tst_strerrno(-TST_RET));
 
-- 
2.48.1


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

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

end of thread, other threads:[~2025-01-22  1:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-21  8:22 [LTP] [PATCH] eventfd06: add AIO support check Li Wang
2025-01-21  9:26 ` Petr Vorel
2025-01-21 10:33   ` Li Wang
2025-01-21 11:13     ` Petr Vorel
2025-01-21 16:14 ` Cyril Hrubis
2025-01-22  1:50   ` Li Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox