| 693 | } // namespace |
| 694 | |
| 695 | int main(int argc, char** argv) { |
| 696 | int failed = 0; |
| 697 | RUN_ARGV_TEST(failed, test_container_default_container_id()); |
| 698 | RUN_ARGV_TEST(failed, test_container_vhost()); |
| 699 | RUN_ARGV_TEST(failed, test_container_capabilities()); |
| 700 | RUN_ARGV_TEST(failed, test_container_properties()); |
| 701 | RUN_ARGV_TEST(failed, test_container_default_vhost()); |
| 702 | RUN_ARGV_TEST(failed, test_container_no_vhost()); |
| 703 | RUN_ARGV_TEST(failed, test_container_bad_address()); |
| 704 | RUN_ARGV_TEST(failed, test_container_stop()); |
| 705 | RUN_ARGV_TEST(failed, test_container_schedule_nohang()); |
| 706 | RUN_ARGV_TEST(failed, test_container_immediate_stop()); |
| 707 | RUN_ARGV_TEST(failed, test_container_pre_stop()); |
| 708 | RUN_ARGV_TEST(failed, test_container_schedule_stop()); |
| 709 | RUN_ARGV_TEST(failed, test_container_links_no_properties()); |
| 710 | RUN_ARGV_TEST(failed, test_container_links_properties()); |
| 711 | RUN_ARGV_TEST(failed, test_container_mt_stop_empty()); |
| 712 | RUN_ARGV_TEST(failed, test_container_mt_stop()); |
| 713 | RUN_ARGV_TEST(failed, test_container_mt_close_race()); |
| 714 | RUN_ARGV_TEST(failed, test_container_schedule_cancel()); |
| 715 | return failed; |
| 716 | } |
nothing calls this directly
no test coverage detected