[LTP] [PATCH v5 3/3] realpath01.c: use TST_EXP_FAIL_PTR_NULL
Wei Gao
wegao@suse.com
Wed Mar 27 04:49:23 CET 2024
Signed-off-by: Wei Gao <wegao@suse.com>
Reviewed-by: Petr Vorel <pvorel@suse.cz>
---
testcases/kernel/syscalls/realpath/realpath01.c | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/testcases/kernel/syscalls/realpath/realpath01.c b/testcases/kernel/syscalls/realpath/realpath01.c
index c0381e9cb..c4c603609 100644
--- a/testcases/kernel/syscalls/realpath/realpath01.c
+++ b/testcases/kernel/syscalls/realpath/realpath01.c
@@ -24,16 +24,7 @@ static void setup(void)
static void run(void)
{
- TESTPTR(realpath(".", NULL));
-
- if (TST_ERR != ENOENT) {
- tst_res(TFAIL | TTERRNO, "returned unexpected errno");
- } else if (TST_RET_PTR != NULL) {
- tst_res(TFAIL, "syscall didn't return NULL: '%s'",
- (char *)TST_RET_PTR);
- } else {
- tst_res(TPASS, "bug not reproduced");
- }
+ TST_EXP_FAIL_PTR_NULL(realpath(".", NULL), ENOENT);
}
static struct tst_test test = {
--
2.35.3
More information about the ltp
mailing list