| 685 | } |
| 686 | |
| 687 | static int |
| 688 | test_app_stop(struct test_app *app) |
| 689 | { |
| 690 | int rc; |
| 691 | |
| 692 | test_app_stop_dispatcher(app); |
| 693 | |
| 694 | rc = test_app_stop_service_cores(app); |
| 695 | if (rc != TEST_SUCCESS) |
| 696 | return rc; |
| 697 | |
| 698 | test_app_stop_event_dev(app); |
| 699 | |
| 700 | app->running = false; |
| 701 | |
| 702 | return TEST_SUCCESS; |
| 703 | } |
| 704 | |
| 705 | struct test_app *test_app; |
| 706 |
no test coverage detected