From: Martin Winter Date: Mon, 16 Jan 2017 17:34:03 +0000 (-0800) Subject: bgp_multiview_topo1: Fix bad check for running daemons X-Git-Tag: frr-7.1-dev~151^2~356 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e631b5186f4ce2fa38d78a7eeff7a0cd1b53bf93;p=matthieu%2Ffrr.git bgp_multiview_topo1: Fix bad check for running daemons Only one ruter running in the setup --- 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 fbafd30cf5..c3165a10a6 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)