[LTP] [PATCH] epoll_creat01: Replace TST_PASS with TST_RET
Cyril Hrubis
chrubis@suse.cz
Mon Aug 30 16:50:11 CEST 2021
Hi!
> diff --git a/testcases/kernel/syscalls/epoll_create/epoll_create01.c b/testcases/kernel/syscalls/epoll_create/epoll_create01.c
> index 54fd0810d..29ac3763e 100644
> --- a/testcases/kernel/syscalls/epoll_create/epoll_create01.c
> +++ b/testcases/kernel/syscalls/epoll_create/epoll_create01.c
> @@ -26,9 +26,8 @@ static void run(unsigned int n)
> {
> TST_EXP_FD(tst_syscall(__NR_epoll_create, tc[n]), "epoll_create(%d)", tc[n]);
>
> - if (!TST_PASS)
> - return;
> - SAFE_CLOSE(TST_PASS);
> + if (TST_RET)
> + SAFE_CLOSE(TST_RET);
> }
Isn't this broken as well?
As far as I can tell the if (!TST_PASS) part in the test is correct and
we only have to change the TST_PASS to TST_RET in the SAFE_CLOSE().
So we should apply:
diff --git a/testcases/kernel/syscalls/epoll_create/epoll_create01.c b/testcases/kernel/syscalls/epoll_create/epoll_create01.c
index 54fd0810d..3ef5b5cac 100644
--- a/testcases/kernel/syscalls/epoll_create/epoll_create01.c
+++ b/testcases/kernel/syscalls/epoll_create/epoll_create01.c
@@ -28,7 +28,7 @@ static void run(unsigned int n)
if (!TST_PASS)
return;
- SAFE_CLOSE(TST_PASS);
+ SAFE_CLOSE(TST_RET);
}
static struct tst_test test = {
--
Cyril Hrubis
chrubis@suse.cz
More information about the ltp
mailing list