diff options
author | Martin Winter <mwinter@opensourcerouting.org> | 2017-01-16 18:34:03 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-11-28 02:22:11 +0100 |
commit | e631b5186f4ce2fa38d78a7eeff7a0cd1b53bf93 (patch) | |
tree | cf5d7bf2c323bffd27ab459b1e146cd48302c82f /tests/topotests/bgp_multiview_topo1 | |
parent | Add support for FRR in addition to Quagga (diff) | |
download | frr-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-x | tests/topotests/bgp_multiview_topo1/test_bgp_multiview_topo1.py | 2 |
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) |