aboutsummaryrefslogtreecommitdiffstats
path: root/docker/run_qtip.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/run_qtip.sh')
-rwxr-xr-xdocker/run_qtip.sh37
1 files changed, 30 insertions, 7 deletions
diff --git a/docker/run_qtip.sh b/docker/run_qtip.sh
index dd3d322f..f6a78e74 100755
--- a/docker/run_qtip.sh
+++ b/docker/run_qtip.sh
@@ -1,16 +1,39 @@
#! /bin/bash
+
+
cp ${REPOS_DIR}/releng/utils/fetch_os_creds.sh ${QTIP_DIR}/data/
-cd ${QTIP_DIR}/data && source get_env_info.sh -n ${INSTALLER_TYPE} -i ${INSTALLER_IP}
+cd ${QTIP_DIR} && source get_env_info.sh \
+-n ${INSTALLER_TYPE} \
+-i ${INSTALLER_IP}
+
source ${QTIP_DIR}/data/opnfv-creds.sh
-cd ${QTIP_DIR} && python qtip.py -l ${LAB} -f compute.txt
-cd ${QTIP_DIR} && python qtip.py -l ${LAB} -f storage.txt
-cd ${QTIP_DIR} && python qtip.py -l ${LAB} -f network.txt
-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
+if [ "$TEST_CASE" == "compute" ]; then
+ cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f compute.txt
+ 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.txt
+ 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.txt
+ 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.txt
+ cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f storage.txt
+ cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -f network.txt
+ 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