Use a boot delay map for quagga based on network tests in steps of 100,000 routes to sync flows with OVS with increased routes
diff --git a/src/test/vrouter/vrouterTest.py b/src/test/vrouter/vrouterTest.py
index b3ca2cc..ab7a12f 100644
--- a/src/test/vrouter/vrouterTest.py
+++ b/src/test/vrouter/vrouterTest.py
@@ -150,10 +150,9 @@
         if networks <= 10000:
             boot_delay = 25
         else:
-            if networks < 500000:
-                boot_delay = 75
-            else:
-                boot_delay = 300
+            delay_map = [60, 100, 150, 200, 300, 450, 600, 800, 1000, 1200]
+            n = min(networks/100000, len(delay_map)-1)
+            boot_delay = delay_map[n]
         cord_test_quagga_restart(config_file = guest_config_file, boot_delay = boot_delay)
 
     @classmethod