X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Frun_blackbox_tests.c;h=0b706e1225e5a2f8c786ebfc6f206efa225c33ca;hb=6717174046f62362e5a22998b40960f574120805;hp=3f6e081a77a1825c84e38cb6175746ce084eb2f8;hpb=dc68da94af8fca91748579c84ef5ed798db7efab;p=meshlink diff --git a/test/blackbox/run_blackbox_tests/run_blackbox_tests.c b/test/blackbox/run_blackbox_tests/run_blackbox_tests.c index 3f6e081a..0b706e12 100644 --- a/test/blackbox/run_blackbox_tests/run_blackbox_tests.c +++ b/test/blackbox/run_blackbox_tests/run_blackbox_tests.c @@ -62,6 +62,10 @@ #include "test_cases_channel_set_poll_cb.h" #include "test_cases_channel_set_receive_cb.h" #include "test_cases_hint_address.h" +#include "test_optimal_pmtu.h" + +#include "test_cases_channel_conn.h" + #include "../common/containers.h" #include "../common/common_handlers.h" @@ -84,7 +88,7 @@ int main(int argc, char *argv[]) { failed_tests += test_meshlink_set_status_cb(); failed_tests += test_meshlink_join(); failed_tests += test_meshlink_set_channel_poll_cb(); -// failed_tests += test_meshlink_channel_open_ex(); + failed_tests += test_meshlink_channel_open_ex(); failed_tests += test_meshlink_channel_get_flags(); failed_tests += test_meshlink_set_channel_accept_cb(); failed_tests += test_meshlink_destroy(); @@ -120,6 +124,10 @@ int main(int argc, char *argv[]) { failed_tests += test_meshlink_channel_open(); failed_tests += test_meshlink_channel_close(); + failed_tests += test_meshlink_channel_conn(); + + failed_tests += test_optimal_pmtu(); + printf("[ PASSED ] %d test(s).\n", total_tests - failed_tests); printf("[ FAILED ] %d test(s).\n", failed_tests);