summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_multiview_topo1
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2017-01-16 18:34:03 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-11-28 02:22:11 +0100
commite631b5186f4ce2fa38d78a7eeff7a0cd1b53bf93 (patch)
treecf5d7bf2c323bffd27ab459b1e146cd48302c82f /tests/topotests/bgp_multiview_topo1
parentAdd support for FRR in addition to Quagga (diff)
downloadfrr-e631b5186f4ce2fa38d78a7eeff7a0cd1b53bf93.tar.xz
frr-e631b5186f4ce2fa38d78a7eeff7a0cd1b53bf93.zip
bgp_multiview_topo1: Fix bad check for running daemons
Only one ruter running in the setup
Diffstat (limited to 'tests/topotests/bgp_multiview_topo1')
-rwxr-xr-xtests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py b/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py
index fbafd30cf..c3165a10a 100755
--- a/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py
+++ b/tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py
@@ -341,7 +341,7 @@ def test_quagga_running():
# CLI(net)
failedRunning = ""
- for i in range(1, 5):
+ for i in range(1, 2):
failedDaemon = net['r%s' % i].checkQuaggaRunning()
if failedDaemon:
failedRunning += " Daemons failed on r%s: %s\n" % (i, failedDaemon)