]> git.puffer.fish Git - matthieu/frr.git/commitdiff
ospf6-topo1: Cleanup log messages
authorMartin Winter <mwinter@netdef.org>
Mon, 21 Nov 2016 08:32:40 +0000 (00:32 -0800)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 28 Nov 2018 01:22:10 +0000 (20:22 -0500)
tests/topotests/ospf6-topo1/test_ospf6_topo1.py

index bae842d0e83fa0ace041f32355a9ff6755746ff7..d32aefa8fef7bed7f5ca28cf3269f22bf08a3493 100755 (executable)
@@ -244,7 +244,7 @@ class NetworkTopo(Topo):
 def setup_module(module):
     global topo, net
 
-    print ("\n\n** Setup Topology: %s\n" % module.__name__)
+    print ("\n\n** %s: Setup Topology" % module.__name__)
     print("******************************************\n")
 
     thisDir = os.path.dirname(os.path.realpath(__file__))
@@ -269,7 +269,7 @@ def setup_module(module):
 def teardown_module(module):
     global net
 
-    print ("\n\n** Shutdown Topology: %s\n" % module.__name__)
+    print ("\n\n** %s: Shutdown Topology" % module.__name__)
     print("******************************************\n")
 
     # End - Shutdown network
@@ -279,7 +279,7 @@ def teardown_module(module):
 def test_quagga_running():
     global net
 
-    print ("\n\n** Check if Quagga is running on each Router node\n")
+    print ("\n\n** Check if Quagga is running on each Router node")
     print("******************************************\n")
     sleep(5)
 
@@ -292,7 +292,7 @@ def test_ospf6_converged():
     global net
 
     # Wait for OSPF6 to converge  (All Neighbors in either Full or TwoWay State)
-    print("\n\n** Verify for OSPF6 daemons to converge\n")
+    print("\n\n** Verify for OSPF6 daemons to converge")
     print("******************************************\n")
     timeout = 60
     while timeout > 0:
@@ -332,7 +332,7 @@ def test_ospf6_routingTable():
     thisDir = os.path.dirname(os.path.realpath(__file__))
 
     # Verify OSPFv3 Routing Table
-    print("\n\n** Verifing OSPFv3 Routing Table\n")
+    print("\n\n** Verifing OSPFv3 Routing Table")
     print("******************************************\n")
     failures = 0
     for i in range(1, 5):