| 320 | } |
| 321 | |
| 322 | static int |
| 323 | test_app_get_worker_port(struct test_app *app, unsigned int lcore_id) |
| 324 | { |
| 325 | int worker; |
| 326 | |
| 327 | worker = test_app_get_worker_index(app, lcore_id); |
| 328 | |
| 329 | if (worker < 0) |
| 330 | return -1; |
| 331 | |
| 332 | return WORKER_PORT_ID(worker); |
| 333 | } |
| 334 | |
| 335 | static void |
| 336 | test_app_queue_note_error(struct test_app *app) |
no test coverage detected