aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap-vpp-verify-semiweekly.sh
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2016-12-08 13:58:32 +0100
committerPeter Mikus <pmikus@cisco.com>2016-12-12 06:23:07 +0000
commitdf5b8e6f57e93a5e96b34b854c07df1668651e14 (patch)
treeb5fc93fb0fdbc02bc08378eb2cf6e5372bc9c22f /bootstrap-vpp-verify-semiweekly.sh
parenteb38a257f3fbecee93a883ddfc62683e49c649a1 (diff)
Correct the checking of return values.
Change-Id: Icf9f37e0ab0ce4eef3532d3b18f82e9dc5f8f999 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'bootstrap-vpp-verify-semiweekly.sh')
-rw-r--r--bootstrap-vpp-verify-semiweekly.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap-vpp-verify-semiweekly.sh b/bootstrap-vpp-verify-semiweekly.sh
index c2ed4ea3e0..e6c48ec909 100644
--- a/bootstrap-vpp-verify-semiweekly.sh
+++ b/bootstrap-vpp-verify-semiweekly.sh
@@ -199,7 +199,7 @@ VIRL_SID=$(ssh ${SSH_OPTIONS} \
${VIRL_USERNAME}@${VIRL_SERVER} \
"start-testcase -c ${VIRL_TOPOLOGY} -r ${VIRL_RELEASE} ${VPP_DEBS_VIRL[@]}")
retval=$?
-if [ "$?" -ne "0" ]; then
+if [ ${retval} -ne "0" ]; then
echo "VIRL simulation start failed"
exit ${retval}
fi
@@ -221,7 +221,7 @@ scp ${SSH_OPTIONS} \
topologies/enabled/topology_VIRL.yaml
retval=$?
-if [ "$?" -ne "0" ]; then
+if [ ${retval} -ne "0" ]; then
echo "Failed to copy topology file from VIRL simulation"
exit ${retval}
fi