public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/2] Add missig parentheses to TST_EXP_FAIL() errno check
@ 2021-09-21 11:33 Martin Doucha
  2021-09-21 11:33 ` [LTP] [PATCH 2/2] syscalls/init_module02: Rewrite lockdown skips Martin Doucha
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Martin Doucha @ 2021-09-21 11:33 UTC (permalink / raw)
  To: ltp

Signed-off-by: Martin Doucha <mdoucha@suse.cz>
---
 include/tst_test_macros.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/tst_test_macros.h b/include/tst_test_macros.h
index 91671d1b8..4a023b700 100644
--- a/include/tst_test_macros.h
+++ b/include/tst_test_macros.h
@@ -176,7 +176,7 @@ extern void *TST_RET_PTR;
 			break;                                                 \
 		}                                                              \
 		                                                               \
-		if (TST_ERR == ERRNO) {                                        \
+		if (TST_ERR == (ERRNO)) {                                      \
 			TST_MSG_(TPASS | TTERRNO, " ",                         \
 				 SSCALL, ##__VA_ARGS__);                       \
 			TST_PASS = 1;                                          \
-- 
2.33.0


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

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

end of thread, other threads:[~2021-09-22  9:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-21 11:33 [LTP] [PATCH 1/2] Add missig parentheses to TST_EXP_FAIL() errno check Martin Doucha
2021-09-21 11:33 ` [LTP] [PATCH 2/2] syscalls/init_module02: Rewrite lockdown skips Martin Doucha
2021-09-21 13:32   ` Petr Vorel
2021-09-21 14:03   ` Cyril Hrubis
2021-09-22  9:46     ` Petr Vorel
2021-09-21 13:31 ` [LTP] [PATCH 1/2] Add missig parentheses to TST_EXP_FAIL() errno check Petr Vorel
2021-09-21 13:39 ` Cyril Hrubis

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