All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/1] select03: Fix false positive on TCONF
@ 2024-11-13 10:59 Petr Vorel
  2024-11-13 11:29 ` Wei Gao via ltp
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Petr Vorel @ 2024-11-13 10:59 UTC (permalink / raw)
  To: ltp; +Cc: Dominique Leuenberger

This fixes error on unsupported __NR__newselect:
select_var.h:89: TCONF: syscall(-1) __NR__newselect not supported on your arch
select03.c:90: TFAIL: Child exited with 32

Fixes: ffdd3b36cd ("syscalls: Add missing exit status check")
Reported-by: Dominique Leuenberger <dleuenberger@suse.com>
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
Alternatively, we could revert to previous state (remove
"!WEXITSTATUS(status)" check), if we really don't care about any other
exit code.

Kind regards,
Petr

 testcases/kernel/syscalls/select/select03.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/testcases/kernel/syscalls/select/select03.c b/testcases/kernel/syscalls/select/select03.c
index 216b22104f..34aea12603 100644
--- a/testcases/kernel/syscalls/select/select03.c
+++ b/testcases/kernel/syscalls/select/select03.c
@@ -77,8 +77,10 @@ static void run(unsigned int n)
 
 	SAFE_WAITPID(pid, &status, 0);
 
-	if (WIFEXITED(status) && !WEXITSTATUS(status))
+	if (WIFEXITED(status) &&
+		(WEXITSTATUS(status) == 0 || WEXITSTATUS(status) == TCONF)) {
 		return;
+	}
 
 	if (tst_variant == GLIBC_SELECT_VARIANT &&
 	    tests[n].timeout == &invalid_to &&
-- 
2.45.2


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

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

end of thread, other threads:[~2024-11-14 11:19 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-13 10:59 [LTP] [PATCH 1/1] select03: Fix false positive on TCONF Petr Vorel
2024-11-13 11:29 ` Wei Gao via ltp
2024-11-13 11:29 ` Avinesh Kumar
2024-11-13 13:39 ` Cyril Hrubis
2024-11-13 14:07   ` Petr Vorel
2024-11-13 14:20     ` Cyril Hrubis
2024-11-13 15:17       ` Petr Vorel
2024-11-14 11:18         ` Petr Vorel
2024-11-13 13:46 ` Martin Doucha
2024-11-13 14:04   ` Cyril Hrubis

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.