tests: TEST_INIT -> TEST_START, TEST_PASSED -> TEST_END

This commit is contained in:
2026-02-05 20:34:29 +00:00
parent 0e6a43ec5f
commit 0b3d659f14
6 changed files with 31 additions and 31 deletions

View File

@@ -14,8 +14,8 @@
#define TEST_VERBOSE 0
#endif
#define TEST_INIT() printf("\t[%s]: Running...\n", __func__)
#define TEST_PASSED() printf("\t[%s]: Passed\n", __func__)
#define TEST_START() printf("\t[%s]: Running...\n", __func__)
#define TEST_END() printf("\t[%s]: Passed\n", __func__)
#define TEST_INFO(...) \
do \
{ \