X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=test%2Fblackbox%2Frun_blackbox_tests%2Ftest_cases_channel_open.c;h=9792aec561750ee44490372cc632a3203d781ebe;hb=f342cb44b25cd61eed17897575015be4aae1dd17;hp=289f2eca9427914af68cb138d1aa90063b877466;hpb=cdb3dada645394bb1e0d0bf7816291fbd9a2a4a0;p=meshlink diff --git a/test/blackbox/run_blackbox_tests/test_cases_channel_open.c b/test/blackbox/run_blackbox_tests/test_cases_channel_open.c index 289f2eca..9792aec5 100644 --- a/test/blackbox/run_blackbox_tests/test_cases_channel_open.c +++ b/test/blackbox/run_blackbox_tests/test_cases_channel_open.c @@ -17,6 +17,10 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#ifdef NDEBUG +#undef NDEBUG +#endif + #include "execute_tests.h" #include "test_cases_channel_open.h" #include "../common/containers.h" @@ -74,8 +78,8 @@ static void test_case_mesh_channel_open_01(void **state) { meshlink_channel_open should open a channel by returning a channel handler */ static bool test_steps_mesh_channel_open_01(void) { - meshlink_destroy("channels_conf.1"); - meshlink_destroy("channels_conf.2"); + assert(meshlink_destroy("channels_conf.1")); + assert(meshlink_destroy("channels_conf.2")); // Open two new meshlink instance. meshlink_handle_t *mesh1 = meshlink_open("channels_conf.1", "foo", "channels", DEV_CLASS_BACKBONE); @@ -107,8 +111,8 @@ static bool test_steps_mesh_channel_open_01(void) { // Clean up. meshlink_close(mesh2); meshlink_close(mesh1); - meshlink_destroy("channels_conf.1"); - meshlink_destroy("channels_conf.2"); + assert(meshlink_destroy("channels_conf.1")); + assert(meshlink_destroy("channels_conf.2")); return true; } @@ -128,8 +132,8 @@ static void test_case_mesh_channel_open_02(void **state) { /* Test Steps for meshlink_channel_open Test Case # 2*/ static bool test_steps_mesh_channel_open_02(void) { - meshlink_destroy("channels_conf.3"); - meshlink_destroy("channels_conf.4"); + assert(meshlink_destroy("channels_conf.3")); + assert(meshlink_destroy("channels_conf.4")); // Open two new meshlink instance. meshlink_handle_t *mesh1 = meshlink_open("channels_conf.3", "foo", "channels", DEV_CLASS_BACKBONE); @@ -162,8 +166,8 @@ static bool test_steps_mesh_channel_open_02(void) { // Clean up. meshlink_close(mesh2); meshlink_close(mesh1); - meshlink_destroy("channels_conf.3"); - meshlink_destroy("channels_conf.4"); + assert(meshlink_destroy("channels_conf.3")); + assert(meshlink_destroy("channels_conf.4")); return true; } @@ -184,7 +188,7 @@ static void test_case_mesh_channel_open_03(void **state) { when called by giving proper error number. */ static bool test_steps_mesh_channel_open_03(void) { - meshlink_destroy("channels_conf.5"); + assert(meshlink_destroy("channels_conf.5")); // Open two new meshlink instance. meshlink_handle_t *mesh = meshlink_open("channels_conf.5", "foo", "channels", DEV_CLASS_BACKBONE); @@ -198,7 +202,7 @@ static bool test_steps_mesh_channel_open_03(void) { // Clean up. meshlink_close(mesh); - meshlink_destroy("channels_conf.5"); + assert(meshlink_destroy("channels_conf.5")); return true; } @@ -219,7 +223,7 @@ static void test_case_mesh_channel_open_04(void **state) { when called by giving proper error number. */ static bool test_steps_mesh_channel_open_04(void) { - meshlink_destroy("channels_conf.7"); + assert(meshlink_destroy("channels_conf.7")); // Open two new meshlink instance. meshlink_handle_t *mesh = meshlink_open("channels_conf.7", "foo", "channels", DEV_CLASS_BACKBONE); @@ -233,7 +237,7 @@ static bool test_steps_mesh_channel_open_04(void) { // Clean up. meshlink_close(mesh); - meshlink_destroy("channels_conf.7"); + assert(meshlink_destroy("channels_conf.7")); return true; }