| 191 | } |
| 192 | |
| 193 | static int |
| 194 | test_app_start_event_dev(struct test_app *app) |
| 195 | { |
| 196 | int rc; |
| 197 | |
| 198 | rc = rte_event_dev_start(app->event_dev_id); |
| 199 | TEST_ASSERT_SUCCESS(rc, "Unable to start event device"); |
| 200 | |
| 201 | return TEST_SUCCESS; |
| 202 | } |
| 203 | |
| 204 | static void |
| 205 | test_app_stop_event_dev(struct test_app *app) |
no test coverage detected