X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Frun_blackbox_tests.c;h=29c662bb3a3f0f934e1a573b2477513d3878967b;hb=1d7554c7b8c632adf86492be9dc7afecb49bca5d;hp=0af09e651eaf6f5e64b8bd6486278ea999710355;hpb=2cd74834fff509cdd9ed51232a3a78e7cad04803;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 0af09e65..29c662bb 100644 --- a/test/blackbox/run_blackbox_tests/run_blackbox_tests.c +++ b/test/blackbox/run_blackbox_tests/run_blackbox_tests.c @@ -66,6 +66,12 @@ #include "test_cases_channel_conn.h" #include "test_cases_get_all_nodes_by_dev_class.h" +#include "test_cases_submesh01.h" +#include "test_cases_submesh02.h" +#include "test_cases_submesh03.h" +#include "test_cases_submesh04.h" + +#include "test_cases_autoconnect.h" #include "../common/containers.h" #include "../common/common_handlers.h" @@ -85,6 +91,7 @@ int main(int argc, char *argv[]) { int failed_tests = 0; + /* failed_tests += test_meta_conn(); failed_tests += test_meshlink_set_status_cb(); failed_tests += test_meshlink_join(); @@ -127,6 +134,15 @@ int main(int argc, char *argv[]) { failed_tests += test_meshlink_channel_close(); failed_tests += test_meshlink_channel_conn(); + */ + failed_tests += test_optimal_pmtu(); + + failed_tests += test_cases_submesh01(); + failed_tests += test_cases_submesh02(); + failed_tests += test_cases_submesh03(); + failed_tests += test_cases_submesh04(); + + failed_tests += test_meshlink_autoconnect(); failed_tests += test_optimal_pmtu();