]> git.puffer.fish Git - mirror/frr.git/commitdiff
bgp_direct_to_bgp_vpn: add some progress output
authorLou Berger <lberger@labn.net>
Thu, 7 Dec 2017 21:17:19 +0000 (16:17 -0500)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 28 Nov 2018 01:22:12 +0000 (20:22 -0500)
Signed-off-by: Lou Berger <lberger@labn.net>
tests/topotests/bgp_direct_to_bgp_vpn/test_bgp_direct_to_bgp_vpn.py

index 90d7f9ede3de4d32bc2cc0f67b93b68b96ce3e92..b539ac3d3c85d4906c2a4b1501bcdfdba5f61219 100755 (executable)
@@ -135,11 +135,13 @@ def setup_module(mod):
     # ... and here it calls Mininet initialization functions.
     tgen.start_topology()
 
+    print("Topology started")
     # This is a sample of configuration loading.
     router_list = tgen.routers()
 
     # For all registred routers, load the zebra configuration file
     for rname, router in router_list.iteritems():
+        print("Setting up %s" % rname)
         config = os.path.join(CWD, '{}/zebra.conf'.format(rname))
         if os.path.exists(config):
             router.load_config(TopoRouter.RD_ZEBRA, config)
@@ -154,6 +156,7 @@ def setup_module(mod):
             router.load_config(TopoRouter.RD_BGP, config)
 
     # After loading the configurations, this function loads configured daemons.
+    print("Starting routers")
     tgen.start_router()
 
     # For debugging after starting daemons, uncomment the next line