Increase OVS switch connection retries to controller
diff --git a/src/test/setup/cord-test.py b/src/test/setup/cord-test.py
index cd1f164..9f3a357 100755
--- a/src/test/setup/cord-test.py
+++ b/src/test/setup/cord-test.py
@@ -69,7 +69,7 @@
         status = 1
         ## Wait for the LLDP flows to be added to the switch
         tries = 0
-        while status != 0 and tries < 150:
+        while status != 0 and tries < 200:
             cmd = 'sudo ovs-ofctl dump-flows {0} | grep \"type=0x8942\"'.format(bridge)
             status = self.execute_switch(cmd, shell = True)
             tries += 1