X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Frun_blackbox_tests.c;h=a1eecb51986c51b64e16e2e21d811bcdeba62535;hb=f9235480fa69f92b50156ac8b6a70f3558bb0bbf;hp=b174ab7e2314169af9776c970b572e4290ddbe9c;hpb=2fd608c4111ef4d48a649401d918f5981856cc44;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 b174ab7e..a1eecb51 100644 --- a/test/blackbox/run_blackbox_tests/run_blackbox_tests.c +++ b/test/blackbox/run_blackbox_tests/run_blackbox_tests.c @@ -63,6 +63,7 @@ #include "test_cases_channel_set_receive_cb.h" #include "test_cases_hint_address.h" #include "test_optimal_pmtu.h" +#include "test_cases_key_rotation.h" #include "test_cases_channel_conn.h" #include "test_cases_get_all_nodes_by_dev_class.h" @@ -73,6 +74,9 @@ #include "test_cases_autoconnect.h" #include "test_cases_set_connection_try_cb.h" +#include "test_cases_random_port_bindings01.h" +#include "test_cases_random_port_bindings02.h" + #include "../common/containers.h" #include "../common/common_handlers.h" @@ -144,6 +148,10 @@ int main(int argc, char *argv[]) { failed_tests += test_cases_connection_try(); failed_tests += test_optimal_pmtu(); + failed_tests += test_meshlink_encrypted_key_rotation(); + + failed_tests += test_meshlink_random_port_bindings01(); + failed_tests += test_meshlink_random_port_bindings02(); printf("[ PASSED ] %d test(s).\n", total_tests - failed_tests); printf("[ FAILED ] %d test(s).\n", failed_tests);