aboutsummaryrefslogtreecommitdiff
path: root/src/integration-tests/test_integration_clique.py.in
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-03-30 16:36:51 +0200
committerChristian Grothoff <christian@grothoff.org>2018-03-30 16:36:51 +0200
commit064800aedb6c049a59734222756c0622a02cdc67 (patch)
tree64782c2fbf4b18c0c5fa738c290331f1df211bf3 /src/integration-tests/test_integration_clique.py.in
parentb7513a90c350bc3f768c3b1e7a42228f272314dd (diff)
downloadgnunet-064800aedb6c049a59734222756c0622a02cdc67.tar.gz
gnunet-064800aedb6c049a59734222756c0622a02cdc67.zip
eliminate check for dead statistic in integration tests
Diffstat (limited to 'src/integration-tests/test_integration_clique.py.in')
-rwxr-xr-xsrc/integration-tests/test_integration_clique.py.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/integration-tests/test_integration_clique.py.in b/src/integration-tests/test_integration_clique.py.in
index dfad984f7..f8b60f33d 100755
--- a/src/integration-tests/test_integration_clique.py.in
+++ b/src/integration-tests/test_integration_clique.py.in
@@ -104,21 +104,18 @@ def fail_cont (check):
104def check_connect (): 104def check_connect ():
105 check = Check (test) 105 check = Check (test)
106 check.add (StatisticsCondition (client, 'transport', '# peers connected',2)) 106 check.add (StatisticsCondition (client, 'transport', '# peers connected',2))
107 check.add (StatisticsCondition (client, 'core', '# neighbour entries allocated',2))
108 check.add (StatisticsCondition (client, 'core', '# peers connected',2)) 107 check.add (StatisticsCondition (client, 'core', '# peers connected',2))
109 check.add (StatisticsCondition (client, 'topology', '# peers connected',2)) 108 check.add (StatisticsCondition (client, 'topology', '# peers connected',2))
110 check.add (StatisticsCondition (client, 'dht', '# peers connected',2)) 109 check.add (StatisticsCondition (client, 'dht', '# peers connected',2))
111 check.add (StatisticsCondition (client, 'fs', '# peers connected',2)) 110 check.add (StatisticsCondition (client, 'fs', '# peers connected',2))
112 111
113 check.add (StatisticsCondition (client_nat, 'transport', '# peers connected',2)) 112 check.add (StatisticsCondition (client_nat, 'transport', '# peers connected',2))
114 check.add (StatisticsCondition (client_nat, 'core', '# neighbour entries allocated',2))
115 check.add (StatisticsCondition (client_nat, 'core', '# peers connected',2)) 113 check.add (StatisticsCondition (client_nat, 'core', '# peers connected',2))
116 check.add (StatisticsCondition (client_nat, 'topology', '# peers connected',2)) 114 check.add (StatisticsCondition (client_nat, 'topology', '# peers connected',2))
117 check.add (StatisticsCondition (client_nat, 'dht', '# peers connected',2)) 115 check.add (StatisticsCondition (client_nat, 'dht', '# peers connected',2))
118 check.add (StatisticsCondition (client_nat, 'fs', '# peers connected',2)) 116 check.add (StatisticsCondition (client_nat, 'fs', '# peers connected',2))
119 117
120 check.add (StatisticsCondition (server, 'transport', '# peers connected',2)) 118 check.add (StatisticsCondition (server, 'transport', '# peers connected',2))
121 check.add (StatisticsCondition (server, 'core', '# neighbour entries allocated',2))
122 check.add (StatisticsCondition (server, 'core', '# peers connected',2)) 119 check.add (StatisticsCondition (server, 'core', '# peers connected',2))
123 check.add (StatisticsCondition (server, 'topology', '# peers connected',2)) 120 check.add (StatisticsCondition (server, 'topology', '# peers connected',2))
124 check.add (StatisticsCondition (server, 'dht', '# peers connected',2)) 121 check.add (StatisticsCondition (server, 'dht', '# peers connected',2))