| 52 | } |
| 53 | |
| 54 | static int |
| 55 | test_eventdev_count(void) |
| 56 | { |
| 57 | uint8_t count; |
| 58 | count = rte_event_dev_count(); |
| 59 | TEST_ASSERT(count > 0, "Invalid eventdev count %" PRIu8, count); |
| 60 | return TEST_SUCCESS; |
| 61 | } |
| 62 | |
| 63 | static int |
| 64 | test_eventdev_get_dev_id(void) |
nothing calls this directly
no test coverage detected