X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Frun_blackbox_tests.c;h=fe6f9a91ada9c3935154c3eaf8d99affc009cba9;hb=53818faa72ac501f593edfc454b35d1fd4bfb318;hp=a1eecb51986c51b64e16e2e21d811bcdeba62535;hpb=3be622ad230c70e9753f9f9737333a2f803b125e;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 a1eecb51..fe6f9a91 100644 --- a/test/blackbox/run_blackbox_tests/run_blackbox_tests.c +++ b/test/blackbox/run_blackbox_tests/run_blackbox_tests.c @@ -17,6 +17,11 @@ 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 #include #include @@ -77,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" @@ -153,6 +160,8 @@ int main(int argc, char *argv[]) { 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);