[LTP] [PATCH] syscalls/statvfs01: Close fd only on success
Cyril Hrubis
chrubis@suse.cz
Wed Jan 18 16:50:09 CET 2023
This fixes TBROK in the case that the creat() call has failed
unexpectedly and allows the test to continue.
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
testcases/kernel/syscalls/statvfs/statvfs01.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/testcases/kernel/syscalls/statvfs/statvfs01.c b/testcases/kernel/syscalls/statvfs/statvfs01.c
index f17dc4cfa..c10c67b18 100644
--- a/testcases/kernel/syscalls/statvfs/statvfs01.c
+++ b/testcases/kernel/syscalls/statvfs/statvfs01.c
@@ -42,7 +42,8 @@ static void run(void)
toolong_fname[valid_len+1] = 0;
TST_EXP_FD(creat(valid_fname, 0444));
- SAFE_CLOSE(TST_RET);
+ if (TST_PASS)
+ SAFE_CLOSE(TST_RET);
TST_EXP_FAIL(creat(toolong_fname, 0444), ENAMETOOLONG);
}
--
2.38.2
More information about the ltp
mailing list