Modified vrouter test to configure ONOS correctly to have the flows configured on OVS for
the networks/routes getting distributed.
And verify the flows by sending traffic
diff --git a/src/test/setup/quagga-config/start.sh b/src/test/setup/quagga-config/start.sh
index 77e342b..42a7ded 100755
--- a/src/test/setup/quagga-config/start.sh
+++ b/src/test/setup/quagga-config/start.sh
@@ -3,4 +3,10 @@
 ip a add 10.10.0.3/16 dev eth1
 #bgpd -u root -f /root/config/bgpd.conf &
 conf_file=${1:-/root/config/testrib.conf}
-/usr/local/sbin/zebra -u root -f $conf_file
+base_conf=$(basename $conf_file)
+base_conf=${base_conf%%.conf}
+if [[ $base_conf == bgpd* ]]; then
+    /usr/local/sbin/bgpd -u root -f $conf_file
+else
+    /usr/local/sbin/zebra -u root -f $conf_file
+fi