[LTP] [PATCH 1/2] include: Move stringification macros to tst_common.h
Petr Vorel
pvorel@suse.cz
Wed Aug 31 11:20:35 CEST 2022
tst_common.h contains useful macros not directly related to test macros.
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
include/tst_common.h | 4 ++++
include/tst_test_macros.h | 3 ---
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/include/tst_common.h b/include/tst_common.h
index fd7a900d4..520cca72c 100644
--- a/include/tst_common.h
+++ b/include/tst_common.h
@@ -83,4 +83,8 @@
#define TST_RES_SUPPORTS_TCONF_TFAIL_TINFO_TPASS_TWARN(condition) \
TST_BUILD_BUG_ON(condition)
+/* stringification */
+#define TST_TO_STR_(s) #s
+#define TST_TO_STR(s) TST_TO_STR_(s)
+
#endif /* TST_COMMON_H__ */
diff --git a/include/tst_test_macros.h b/include/tst_test_macros.h
index c8f7825c4..2e7b7871c 100644
--- a/include/tst_test_macros.h
+++ b/include/tst_test_macros.h
@@ -36,9 +36,6 @@ extern void *TST_RET_PTR;
#define TST_2_(_1, _2, ...) _2
-#define TST_TO_STR_(s) #s
-#define TST_TO_STR(s) TST_TO_STR_(s)
-
#define TST_FMT_(FMT, _1, ...) FMT, ##__VA_ARGS__
#define TST_MSG_(RES, FMT, SCALL, ...) \
--
2.37.2
More information about the ltp
mailing list