| 204 | } |
| 205 | |
| 206 | void |
| 207 | order_test_destroy(struct evt_test *test, struct evt_options *opt) |
| 208 | { |
| 209 | RTE_SET_USED(opt); |
| 210 | struct test_order *t = evt_test_priv(test); |
| 211 | |
| 212 | rte_free(t->expected_flow_seq); |
| 213 | rte_free(t->producer_flow_seq); |
| 214 | rte_free(test->test_priv); |
| 215 | } |
| 216 | |
| 217 | int |
| 218 | order_mempool_setup(struct evt_test *test, struct evt_options *opt) |
nothing calls this directly
no test coverage detected