We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a25fcf commit 88920fdCopy full SHA for 88920fd
components/utilities/utest/utest.h
@@ -172,11 +172,13 @@ utest_t utest_handle_get(void);
172
* @return None
173
*
174
*/
175
-#define UTEST_UNIT_RUN(test_unit_func) \
+#define _UTEST_UNIT_RUN(test_unit_func) \
176
do { \
177
utest_unit_run(test_unit_func, #test_unit_func); \
178
} while (0)
179
180
+#define UTEST_UNIT_RUN(test_unit_func) _UTEST_UNIT_RUN(test_unit_func)
181
+
182
#ifdef __cplusplus
183
}
184
#endif
0 commit comments