From 012bae528a6981f6d7fb2be3b46756d3fad0239f Mon Sep 17 00:00:00 2001 From: "wu.zhihui" Date: Fri, 19 Aug 2016 08:40:12 +0800 Subject: Use test_case/default instead of the directory named with a pod's name. 1. For qtip ci job, use test_cases/default for all pods. 2. It needn't to specify ip in test case files. 3. Remove customized configurations in test case files. Change-Id: I4fb6210c024aacc4d1ed915939c0aabcfa60bb57 Signed-off-by: wu.zhihui --- docker/run_qtip.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docker') 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 -- cgit 1.2.3-korg