aboutsummaryrefslogtreecommitdiff
path: root/src/topology
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-12-11 12:27:41 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-12-11 12:27:41 +0000
commit15d78567a6dfa9f4644321e094c8b0eec717ec4e (patch)
tree4fe9977c8df426847c166ae9dfccfe20196a8dc9 /src/topology
parentc70d10589c4189a255066032bdd1d72204641247 (diff)
downloadgnunet-15d78567a6dfa9f4644321e094c8b0eec717ec4e.tar.gz
gnunet-15d78567a6dfa9f4644321e094c8b0eec717ec4e.zip
GNUNET_TESTBED_test_run to return status
Diffstat (limited to 'src/topology')
-rw-r--r--src/topology/test_gnunet_daemon_topology.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/topology/test_gnunet_daemon_topology.c b/src/topology/test_gnunet_daemon_topology.c
index be2875fe5..ae35da381 100644
--- a/src/topology/test_gnunet_daemon_topology.c
+++ b/src/topology/test_gnunet_daemon_topology.c
@@ -82,11 +82,11 @@ do_connect (void *cls,
82int 82int
83main (int argc, char *argv[]) 83main (int argc, char *argv[])
84{ 84{
85 GNUNET_TESTBED_test_run ("test-gnunet-daemon-topology", 85 (void) GNUNET_TESTBED_test_run ("test-gnunet-daemon-topology",
86 "test_gnunet_daemon_topology_data.conf", 86 "test_gnunet_daemon_topology_data.conf",
87 NUM_PEERS, 87 NUM_PEERS,
88 0, NULL, NULL, 88 0, NULL, NULL,
89 &do_connect, NULL); 89 &do_connect, NULL);
90 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-topology"); 90 GNUNET_DISK_directory_remove ("/tmp/test-gnunet-topology");
91 return ok; 91 return ok;
92} 92}