aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-05-11 18:49:51 +0000
committerNathan S. Evans <evans@in.tum.de>2010-05-11 18:49:51 +0000
commitffb6012a7dba4491694bba515c085ddb6503da4a (patch)
treeacd1cb27f53793f376e62a99ff70c03d7865445c /src/testing
parent0172a0872088df03d363eb217bd890f156cdf9fe (diff)
downloadgnunet-ffb6012a7dba4491694bba515c085ddb6503da4a.tar.gz
gnunet-ffb6012a7dba4491694bba515c085ddb6503da4a.zip
sigh, another missed commit
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/test_testing_topology.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/testing/test_testing_topology.c b/src/testing/test_testing_topology.c
index 64d842a9e..331992692 100644
--- a/src/testing/test_testing_topology.c
+++ b/src/testing/test_testing_topology.c
@@ -75,6 +75,8 @@ static FILE *dotOutFile;
75 75
76static char *topology_string; 76static char *topology_string;
77 77
78static char *blacklist_transports;
79
78static int transmit_ready_scheduled; 80static int transmit_ready_scheduled;
79 81
80static int transmit_ready_failed; 82static int transmit_ready_failed;
@@ -546,7 +548,7 @@ static void
546create_topology () 548create_topology ()
547{ 549{
548 peers_left = num_peers; /* Reset counter */ 550 peers_left = num_peers; /* Reset counter */
549 if (GNUNET_TESTING_create_topology (pg, topology, blacklist_topology) != GNUNET_SYSERR) 551 if (GNUNET_TESTING_create_topology (pg, topology, blacklist_topology, blacklist_transports) != GNUNET_SYSERR)
550 { 552 {
551#if VERBOSE 553#if VERBOSE
552 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 554 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
@@ -708,6 +710,9 @@ run (void *cls,
708 } 710 }
709 } 711 }
710 712
713 GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "blacklist_transports",
714 &blacklist_transports);
715
711 if (GNUNET_YES == 716 if (GNUNET_YES ==
712 GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "blacklist_topology", 717 GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "blacklist_topology",
713 &blacklist_topology_num)) 718 &blacklist_topology_num))