X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fenvs%2Fhost-config;h=2ad4b3eb7096ce18d148e4a25638af4a891ed14c;hb=refs%2Fchanges%2F07%2F31307%2F2;hp=4a5d1b5a2653da3ede5cfbf89f5ea39e580d1463;hpb=b1495d4fa3175a3ffea301dedb9b0a60ca9ada44;p=kvmfornfv.git diff --git a/ci/envs/host-config b/ci/envs/host-config index 4a5d1b5a2..2ad4b3eb7 100755 --- a/ci/envs/host-config +++ b/ci/envs/host-config @@ -35,6 +35,32 @@ done stress_isolcpus=${first}-${last} echo "Stress tool runs on $stress_isolcpus" +#Host for executing test cases based on test_type/job from releng +function setHostIP { + test_type=$1 + if [ ${test_type} == "verify" ];then + HOST_IP="10.10.100.21" + elif [ ${test_type} == "daily" ];then + HOST_IP="10.10.100.22" + else + echo "Incorrect test type" + fi + echo ${HOST_IP} +} + +#Time duration for executing test cases based on test_type/job from releng +function setTestTime { + test_type=$1 + if [ ${test_type} == "verify" ];then + test_time=1000 # 1s + elif [ ${test_type} == "daily" ];then + test_time=3600000 # 1hr + else + echo "Incorrect test type" + fi + echo ${test_time} +} + #Tar the log files generated during testcase execution and exit. function test_exit { exitCode=$1