aboutsummaryrefslogtreecommitdiffstats
path: root/docker/run_qtip.sh
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2016-08-24 11:14:44 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-24 11:14:44 +0000
commita1a518a774a3a4e0332eb1f1644d97a5a29382e4 (patch)
tree3b8fa74627ce08ca4fbac7d7a2b720daec5dc063 /docker/run_qtip.sh
parent6c24c80943a59ac224fc89bb4aaacdb898b1dbcd (diff)
parent012bae528a6981f6d7fb2be3b46756d3fad0239f (diff)
Merge "Use test_case/default instead of the directory named with a pod's name."
Diffstat (limited to 'docker/run_qtip.sh')
-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 a4729c06..37eb0ea7 100755
--- a/docker/run_qtip.sh
+++ b/docker/run_qtip.sh
@@ -10,25 +10,25 @@ cd ${QTIP_DIR} && source get_env_info.sh \
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} && python qtip.py -l default -f compute
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} && python qtip.py -l default -f storage
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} && python qtip.py -l default -f network
cd ${QTIP_DIR}/data/ref_results/ && python network_suite.py
fi
if [ "$TEST_CASE" == "all" ]; then
- cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f compute
- 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} && python qtip.py -l default -f compute
+ cd ${QTIP_DIR} && python qtip.py -l default -f storage
+ cd ${QTIP_DIR} && python qtip.py -l default -f network
cd ${QTIP_DIR}/data/ref_results/ && python compute_suite.py
cd ${QTIP_DIR}/data/ref_results/ && python storage_suite.py