aboutsummaryrefslogtreecommitdiff
path: root/src/testing/test_testing_group_remote.c
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-06-27 14:26:17 +0000
committerNathan S. Evans <evans@in.tum.de>2010-06-27 14:26:17 +0000
commit0ee59577ee81b92ee492491f4d685f26bc186c17 (patch)
tree8643d5559078e8164d9ddc9f77ec1f3c760125a4 /src/testing/test_testing_group_remote.c
parent413b5166b253c938e65d9c5ddd28ed85c93e8835 (diff)
downloadgnunet-0ee59577ee81b92ee492491f4d685f26bc186c17.tar.gz
gnunet-0ee59577ee81b92ee492491f4d685f26bc186c17.zip
coverity and codesonar fixes
Diffstat (limited to 'src/testing/test_testing_group_remote.c')
-rw-r--r--src/testing/test_testing_group_remote.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/testing/test_testing_group_remote.c b/src/testing/test_testing_group_remote.c
index 74841fb43..6b7fabb31 100644
--- a/src/testing/test_testing_group_remote.c
+++ b/src/testing/test_testing_group_remote.c
@@ -93,8 +93,12 @@ run (void *cls,
93 &num_peers)) 93 &num_peers))
94 num_peers = DEFAULT_NUM_PEERS; 94 num_peers = DEFAULT_NUM_PEERS;
95 95
96 GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "hosts", 96 if (GNUNET_SYSERR == GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "hosts",
97 &hostnames); 97 &hostnames))
98 {
99 GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "No hosts specified, running all tests on localhost\n");
100 }
101
98 102
99 peers_left = num_peers; 103 peers_left = num_peers;
100 pg = GNUNET_TESTING_daemons_start (sched, 104 pg = GNUNET_TESTING_daemons_start (sched,