Changes to cord test setup script to activate and start onos with required apps and instantiate with support for 100 veth ports on the ovs bridge for the test setup
diff --git a/src/test/setup/cord-test.sh b/src/test/setup/cord-test.sh
index 0cc65e6..5448a35 100755
--- a/src/test/setup/cord-test.sh
+++ b/src/test/setup/cord-test.sh
@@ -19,7 +19,7 @@
     for p in 8181 8101 9876 6653 6633; do
         port_str="$port_str -p $p:$p/tcp"
     done
-    ONOS_APPS="drivers,openflow,proxyarp,mobility,fwd,aaa,igmp"
+    ONOS_APPS="drivers,openflow,proxyarp,aaa,igmp"
     local cnt=`docker run -itd $port_str -e ONOS_APPS=${ONOS_APPS} $image /bin/bash`
     local ipaddr
     ipaddr=`docker inspect -f '{{.NetworkSettings.IPAddress}}' $cnt`