CSIT-470 Add option to configure CFS scheduler priority for VPP
[csit.git] / bootstrap-vpp-honeycomb.sh
index ec7be15..41bb4db 100755 (executable)
@@ -106,12 +106,12 @@ do
     fi
 done
 
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+
 # Download the latest VPP and HC .deb packages
 echo Downloading packages...
 bash ${SCRIPT_DIR}/resources/tools/download_hc_pkgs.sh
 
-SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-
 VPP_DEBS=(*.deb)
 echo ${VPP_DEBS[@]}
 VIRL_DIR_LOC="/tmp"
@@ -160,9 +160,9 @@ function stop_virl_simulation {
 
 VIRL_SID=$(ssh ${SSH_OPTIONS} \
     ${VIRL_USERNAME}@${VIRL_SERVER} \
-    "start-testcase ${VIRL_TOPOLOGY} -r ${VIRL_RELEASE}")
+    "start-testcase -c ${VIRL_TOPOLOGY} -r ${VIRL_RELEASE} ${VPP_DEBS_FULL[@]}")
 retval=$?
-if [ "$?" -ne "0" ]; then
+if [ ${retval} -ne "0" ]; then
     echo "VIRL simulation start failed"
     exit ${retval}
 fi
@@ -184,7 +184,7 @@ scp ${SSH_OPTIONS} \
     topologies/enabled/topology.yaml
 
 retval=$?
-if [ "$?" -ne "0" ]; then
+if [ ${retval} -ne "0" ]; then
     echo "Failed to copy topology file from VIRL simulation"
     exit ${retval}
 fi