X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Frun_blackbox_tests.c;h=0af09e651eaf6f5e64b8bd6486278ea999710355;hb=2cd74834fff509cdd9ed51232a3a78e7cad04803;hp=5cfb21f77a2fed856b2d7c195b80073fc82971ad;hpb=1c04402a6d2f3a85d0cb4a5b4a6db5b1f3a79511;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 5cfb21f7..0af09e65 100644 --- a/test/blackbox/run_blackbox_tests/run_blackbox_tests.c +++ b/test/blackbox/run_blackbox_tests/run_blackbox_tests.c @@ -62,8 +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 "test_cases_get_all_nodes_by_dev_class.h" #include "../common/containers.h" #include "../common/common_handlers.h" @@ -83,7 +85,7 @@ int main(int argc, char *argv[]) { int failed_tests = 0; - /*failed_tests += test_meta_conn(); + failed_tests += test_meta_conn(); failed_tests += test_meshlink_set_status_cb(); failed_tests += test_meshlink_join(); failed_tests += test_meshlink_set_channel_poll_cb(); @@ -94,6 +96,7 @@ int main(int argc, char *argv[]) { failed_tests += test_meshlink_export(); failed_tests += test_meshlink_get_fingerprint(); failed_tests += test_meshlink_get_all_nodes(); + failed_tests += test_meshlink_get_all_node_by_device_class(); failed_tests += test_meshlink_set_port(); failed_tests += test_meshlink_sign(); failed_tests += test_meshlink_verify(); @@ -123,8 +126,9 @@ 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_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);