summaryrefslogtreecommitdiffstats
path: root/qtip
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2018-03-01 10:36:20 +0800
committerzhihui wu <wu.zhihui1@zte.com.cn>2018-03-01 13:12:36 +0800
commit46b3aa5c929bdce4526b13dda59e0787c81bdf3d (patch)
tree6d928bc7387477777230595a23df82f55bf87497 /qtip
parentc29e36280713aa232a19e0d3612bae0948601837 (diff)
bugfix about sut
1. currently experimental job only runs against vnf 2. bugfix: for qtip Renaming a container with the same name as its current name 3. update quickstart.sh usage Change-Id: I363fcfdb4199b3ddc408fdf3c54b11cdf62fa728 Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'qtip')
-rw-r--r--qtip/scripts/quickstart.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/qtip/scripts/quickstart.sh b/qtip/scripts/quickstart.sh
index f9becda8..22257f5b 100644
--- a/qtip/scripts/quickstart.sh
+++ b/qtip/scripts/quickstart.sh
@@ -13,7 +13,8 @@ set -o pipefail
set -x
usage(){
- echo "usage: $0 -q <qtip_test_suite> -t <installer_type> -i <installer_ip> -p <pod_name> -s <scenario> -r <report_url>" >&2
+ echo "usage: $0 -q <qtip_test_suite> -t <installer_type> -i <installer_ip> -p <pod_name> -s <scenario> -r <report_url>
+ -u <sut>" >&2
}
verify_connectivity(){
@@ -56,7 +57,7 @@ test_suite=${test_suite:-$TEST_SUITE}
pod_name=${pod_name:-$NODE_NAME}
scenario=${scenario:-$SCENARIO}
testapi_url=${testapi_url:-$TESTAPI_URL}
-sut=${sut:-host}
+sut=${sut:-node}
# we currently support fuel, apex and mcp
if [[ ! "$installer_type" =~ (fuel|apex|mcp) ]]; then
@@ -78,9 +79,9 @@ esac
cd /home/opnfv
qtip create --project-template ${test_suite} --pod-name ${pod_name} --installer-type ${installer_type} \
---installer-host ${installer_ip} --scenario ${scenario} --sut ${sut} ${test_suite}-${sut}
+--installer-host ${installer_ip} --scenario ${scenario} --sut ${sut} ${test_suite}
-cd ${test_suite}-${sut}
+cd ${test_suite}
qtip setup
eval `ssh-agent`