]> git.puffer.fish Git - mirror/frr.git/commitdiff
tests: Don't generate support bundles when we get the results we want 8168/head
authorDonald Sharp <sharpd@nvidia.com>
Sun, 28 Feb 2021 04:05:40 +0000 (23:05 -0500)
committerDonald Sharp <sharpd@nvidia.com>
Tue, 2 Mar 2021 18:41:50 +0000 (13:41 -0500)
We are generating support bundles for tests being run that
are passing.  Tell the system...

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
tests/topotests/evpn_type5_test_topo1/test_evpn_type5_topo1.py

index 439738c7259c9efe367982fc1cbf710fe35a0357..036277411f8c74e6b96d4743024c233a3338a741 100644 (file)
@@ -1312,14 +1312,14 @@ def test_evpn_routes_from_VNFs_p1(request):
     )
     for addr_type in ADDR_TYPES:
         input_routes = {key: topo["routers"][key] for key in ["r1"]}
-        result = verify_rib(tgen, addr_type, "d2", input_routes, expected=False)
+        result = verify_rib(tgen, addr_type, "d2", input_routes, expected=True)
         assert result is True, "Testcase {} :Failed \n Error: {}".format(
             tc_name, result
         )
 
     for addr_type in ADDR_TYPES:
         input_routes = {key: topo["routers"][key] for key in ["r2"]}
-        result = verify_rib(tgen, addr_type, "d2", input_routes, expected=False)
+        result = verify_rib(tgen, addr_type, "d2", input_routes, expected=True)
         assert result is True, "Testcase {} :Failed \n Error: {}".format(
             tc_name, result
         )