| 141 | #define TEST_CASES_END() { NULL, NULL, NULL, NULL, NULL, 0, NULL } |
| 142 | |
| 143 | static inline void |
| 144 | debug_hexdump(FILE *file, const char *title, const void *buf, size_t len) |
| 145 | { |
| 146 | if (rte_log_get_global_level() == RTE_LOG_DEBUG) |
| 147 | rte_hexdump(file, title, buf, len); |
| 148 | } |
| 149 | |
| 150 | struct unit_test_suite { |
| 151 | const char *suite_name; |
no test coverage detected