From 0bb316c298fad2cc5268d551e787ed75b6dd0729 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 20 Oct 2011 17:23:48 +0000 Subject: [PATCH] check --- src/testing/test_testing_connect.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/testing/test_testing_connect.c b/src/testing/test_testing_connect.c index a53dc9b90..f32e2e40f 100644 --- a/src/testing/test_testing_connect.c +++ b/src/testing/test_testing_connect.c @@ -147,9 +147,11 @@ run (void *cls, char *const *args, const char *cfgfile, GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n"); #endif c1 = GNUNET_CONFIGURATION_create (); - GNUNET_CONFIGURATION_load (c1, "test_testing_connect_peer1.conf"); + GNUNET_assert (GNUNET_OK == + GNUNET_CONFIGURATION_load (c1, "test_testing_connect_peer1.conf")); c2 = GNUNET_CONFIGURATION_create (); - GNUNET_CONFIGURATION_load (c2, "test_testing_connect_peer2.conf"); + GNUNET_assert (GNUNET_OK == + GNUNET_CONFIGURATION_load (c2, "test_testing_connect_peer2.conf")); d1 = GNUNET_TESTING_daemon_start (c1, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL, NULL, NULL, &my_cb1, NULL); GNUNET_assert (d1 != NULL); -- 2.25.1