Verify if mbuf can pass the check */
| 1169 | #else |
| 1170 | /* Verify if mbuf can pass the check */ |
| 1171 | static bool |
| 1172 | mbuf_check_pass(struct rte_mbuf *buf) |
| 1173 | { |
| 1174 | const char *reason; |
| 1175 | |
| 1176 | if (rte_mbuf_check(buf, 1, &reason) == 0) |
| 1177 | return true; |
| 1178 | |
| 1179 | return false; |
| 1180 | } |
| 1181 | |
| 1182 | static int |
| 1183 | test_failing_mbuf_sanity_check(struct rte_mempool *pktmbuf_pool) |
no test coverage detected