diff options
author | Nauman_Ahad <Nauman_Ahad@dell.com> | 2016-01-13 19:45:52 +0500 |
---|---|---|
committer | Nauman Ahad <Nauman_Ahad@dell.com> | 2016-01-14 12:03:02 +0000 |
commit | bff3a6e90e4327b2a6710bc80ede33bd9f054c64 (patch) | |
tree | 86236a77a579135082973d8e420b8e5b6979820e /docker/run_qtip.sh | |
parent | c1289dd59e873104bd906bee9884426d9d36d47b (diff) |
run_qtip.sh fix
Renamed compute.txt to compute for run_qtip.sh
to reflect changes made in qtip repo
Change-Id: I4456ef305cfd01c039ce152b5fd6f6512204166d
Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
(cherry picked from commit bec658afadacfeeca9fbfbe598ceb5c5601a3372)
Diffstat (limited to 'docker/run_qtip.sh')
-rwxr-xr-x | docker/run_qtip.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docker/run_qtip.sh b/docker/run_qtip.sh index e6c2ed99..79c2a225 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.txt + cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -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.txt + cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -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.txt + cd ${QTIP_DIR} && python qtip.py -l ${NODE_NAME} -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.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} && 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}/data/ref_results/ $$ python compute_suite.py cd ${QTIP_DIR}/data/ref_results/ $$ python storage_suite.py |