| 535 | } |
| 536 | |
| 537 | int main(int argc, char** argv) { |
| 538 | int failed = 0; |
| 539 | RUN_ARGV_TEST(failed, test_driver_link_id()); |
| 540 | RUN_ARGV_TEST(failed, test_endpoint_close()); |
| 541 | RUN_ARGV_TEST(failed, test_driver_disconnected()); |
| 542 | RUN_ARGV_TEST(failed, test_no_container()); |
| 543 | RUN_ARGV_TEST(failed, test_spin_interrupt()); |
| 544 | RUN_ARGV_TEST(failed, test_link_address()); |
| 545 | RUN_ARGV_TEST(failed, test_link_anonymous_dynamic()); |
| 546 | RUN_ARGV_TEST(failed, test_link_capability_filter()); |
| 547 | RUN_ARGV_TEST(failed, test_message()); |
| 548 | RUN_ARGV_TEST(failed, test_message_timeout_succeed()); |
| 549 | RUN_ARGV_TEST(failed, test_message_timeout_fail()); |
| 550 | return failed; |
| 551 | } |
nothing calls this directly
no test coverage detected