aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorMofassirArif <Mofassir_Arif@dellteam.com>2016-01-21 23:56:01 -0800
committerNauman Ahad <nauman.ahad@xflowresearch.com>2016-02-01 22:28:21 +0000
commit635fc10d93342baedc23b8e683d9d75cd355c8c4 (patch)
tree10e6ed177bd1b77a53f11042f251fba16d73cf5f /docker
parent30f974a996efbb4b7f7b4fc3a47a1454c3fe80e5 (diff)
bug-fix: fix bug in docker run file, replace $$ with &&
Change-Id: Ic48483ae97aab2f844ee753cecf5fc3714a13cdb Signed-off-by: MofassirArif <Mofassir_Arif@dellteam.com> (cherry picked from commit bab7c5360e2bd4eabc63e3b78cb6fcea8730b608)
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/run_qtip.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/docker/run_qtip.sh b/docker/run_qtip.sh
index 79c2a225..a4729c06 100755
--- a/docker/run_qtip.sh
+++ b/docker/run_qtip.sh
@@ -11,17 +11,17 @@ source ${QTIP_DIR}/opnfv-creds.sh
if [ "$TEST_CASE" == "compute" ]; then
cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f compute
- cd ${QTIP_DIR}/data/ref_results/ $$ python compute_suite.py
+ cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py
fi
if [ "$TEST_CASE" == "storage" ]; then
cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f storage
- cd ${QTIP_DIR}/data/ref_results/ $$ python storage_suite.py
+ cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py
fi
if [ "$TEST_CASE" == "network" ]; then
cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f network
- cd ${QTIP_DIR}/data/ref_results/ $$ python network_suite.py
+ cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py
fi
@@ -30,9 +30,9 @@ if [ "$TEST_CASE" == "all" ]; then
cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f storage
cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f network
- cd ${QTIP_DIR}/data/ref_results/ $$ python compute_suite.py
- cd ${QTIP_DIR}/data/ref_results/ $$ python storage_suite.py
- cd ${QTIP_DIR}/data/ref_results/ $$ python network_suite.py
+ cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py
+ cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py
+ cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py
fi