| 665 | } |
| 666 | |
| 667 | static int |
| 668 | test_app_start(struct test_app *app) |
| 669 | { |
| 670 | int rc; |
| 671 | |
| 672 | rc = test_app_start_event_dev(app); |
| 673 | if (rc != TEST_SUCCESS) |
| 674 | return rc; |
| 675 | |
| 676 | rc = test_app_start_service_cores(app); |
| 677 | if (rc != TEST_SUCCESS) |
| 678 | return rc; |
| 679 | |
| 680 | test_app_start_dispatcher(app); |
| 681 | |
| 682 | app->running = true; |
| 683 | |
| 684 | return TEST_SUCCESS; |
| 685 | } |
| 686 | |
| 687 | static int |
| 688 | test_app_stop(struct test_app *app) |
no test coverage detected