From: Lou Berger Date: Thu, 7 Dec 2017 21:17:19 +0000 (-0500) Subject: bgp_direct_to_bgp_vpn: add some progress output X-Git-Tag: frr-7.1-dev~151^2~185 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=ffdac4dbd85bbe3002b9a229eca071e2e57e10a3;p=matthieu%2Ffrr.git bgp_direct_to_bgp_vpn: add some progress output Signed-off-by: Lou Berger --- diff --git a/tests/topotests/bgp_direct_to_bgp_vpn/test_bgp_direct_to_bgp_vpn.py b/tests/topotests/bgp_direct_to_bgp_vpn/test_bgp_direct_to_bgp_vpn.py index 90d7f9ede3..b539ac3d3c 100755 --- a/tests/topotests/bgp_direct_to_bgp_vpn/test_bgp_direct_to_bgp_vpn.py +++ b/tests/topotests/bgp_direct_to_bgp_vpn/test_bgp_direct_to_bgp_vpn.py @@ -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