]> git.meshlink.io Git - meshlink/blobdiff - test/blackbox/run_blackbox_tests/run_blackbox_tests.c
Add meshlink_get_all_nodes_by_last_reachable API, meshlink_get_node_reachability...
[meshlink] / test / blackbox / run_blackbox_tests / run_blackbox_tests.c
index 62387c94991e6af9d06e932470c1dd05f351d2e4..fe6f9a91ada9c3935154c3eaf8d99affc009cba9 100644 (file)
     with this program; if not, write to the Free Software Foundation, Inc.,
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
+
+#ifdef NDEBUG
+#undef NDEBUG
+#endif
+
 #include <stdlib.h>
 #include <stdarg.h>
 #include <setjmp.h>
@@ -63,6 +68,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"
@@ -76,6 +82,8 @@
 #include "test_cases_random_port_bindings01.h"
 #include "test_cases_random_port_bindings02.h"
 
+#include "test_cases_get_node_reachability.h"
+
 #include "../common/containers.h"
 #include "../common/common_handlers.h"
 
@@ -147,10 +155,13 @@ 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();
 
+       failed_tests += test_get_node_reachability();
+
        printf("[ PASSED ] %d test(s).\n", total_tests - failed_tests);
        printf("[ FAILED ] %d test(s).\n", failed_tests);