aboutsummaryrefslogtreecommitdiff
path: root/src/testing/test_testing_group_remote.c
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2011-01-27 19:25:53 +0000
committerNathan S. Evans <evans@in.tum.de>2011-01-27 19:25:53 +0000
commit76dba8dc2275420dac68eb797a8bcc3b29d7257f (patch)
treef6fcdb3fc15cb9b8c737e539de335d5bdd81fbda /src/testing/test_testing_group_remote.c
parent3987e36bc0a7e14336bda1494c723fdd08d8bd8a (diff)
downloadgnunet-76dba8dc2275420dac68eb797a8bcc3b29d7257f.tar.gz
gnunet-76dba8dc2275420dac68eb797a8bcc3b29d7257f.zip
reduce topology overheads in testing, probably breaking some stuff
Diffstat (limited to 'src/testing/test_testing_group_remote.c')
-rw-r--r--src/testing/test_testing_group_remote.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/test_testing_group_remote.c b/src/testing/test_testing_group_remote.c
index 8547e4de5..5156007a6 100644
--- a/src/testing/test_testing_group_remote.c
+++ b/src/testing/test_testing_group_remote.c
@@ -85,14 +85,14 @@ my_cb (void *cls,
85 peers_left--; 85 peers_left--;
86 if (peers_left == 0) 86 if (peers_left == 0)
87 { 87 {
88 //GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL); 88 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
89 ok = 0; 89 ok = 0;
90 } 90 }
91 else if (peers_failed == peers_left) 91 else if (peers_failed == peers_left)
92 { 92 {
93 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 93 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
94 "Too many peers failed, ending test!\n"); 94 "Too many peers failed, ending test!\n");
95 //GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL); 95 GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
96 } 96 }
97} 97}
98 98