| 206 | } |
| 207 | |
| 208 | static int |
| 209 | test_rawdev_queue_count(void) |
| 210 | { |
| 211 | unsigned int q_count; |
| 212 | |
| 213 | /* Get the current configuration */ |
| 214 | q_count = rte_rawdev_queue_count(test_dev_id); |
| 215 | RTE_TEST_ASSERT_EQUAL(q_count, 1, "Invalid queue count (%d)", q_count); |
| 216 | |
| 217 | return TEST_SUCCESS; |
| 218 | } |
| 219 | |
| 220 | static int |
| 221 | test_rawdev_queue_setup(void) |
nothing calls this directly
no test coverage detected