]> git.puffer.fish Git - mirror/frr.git/commitdiff
bgp_vrf_netns: revert changes from topotest 77
authorPhilippe Guibert <philippe.guibert@6wind.com>
Tue, 13 Mar 2018 13:57:58 +0000 (14:57 +0100)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 28 Nov 2018 01:22:13 +0000 (20:22 -0500)
revert
https://github.com/FRRouting/topotests/pull/77
bgp_vrf_netns: do not run test on 32 bit linux machines

Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
tests/topotests/bgp_vrf_netns/test_bgp_vrf_netns_topo.py

index 21e02ed9a15352b341403810626e748f7b77adfb..780a62e2e93f36ad875887c8f6a7580cfa7af6c4 100755 (executable)
@@ -97,10 +97,6 @@ def setup_module(module):
             return  pytest.skip('Skipping BGP VRF NETNS Test. VRF NETNS backend not available on FRR')
         if os.system('ip netns list') != 0:
             return  pytest.skip('Skipping BGP VRF NETNS Test. NETNS not available on System')
-        osbased = router.run('uname -m').rstrip()
-        osrestriction = ['i686','i386']
-        if osbased in osrestriction:
-            return  pytest.skip('Skipping BGP VRF NETNS Test. NETNS not available on 32 bit machines')
     # retrieve VRF backend kind
     if CustomizeVrfWithNetns == True:
         logger.info('Testing with VRF Namespace support')
@@ -195,7 +191,7 @@ def test_bgp_convergence():
         output = router.vtysh_cmd('show bgp vrf r1-cust1 summary json', isjson=True)
         return topotest.json_cmp(output, expected)
 
-    _, res = topotest.run_and_expect(_convergence_test, None, count=120, wait=1)
+    _, res = topotest.run_and_expect(_convergence_test, None, count=90, wait=1)
     assertmsg = 'BGP router network did not converge'
     assert res is None, assertmsg