diff options
author | Jiang, Yunhong <yunhong.jiang@intel.com> | 2017-03-23 06:04:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-23 06:04:07 +0000 |
commit | 7fc433e94358dcf9f7702e4430db588bad5ab955 (patch) | |
tree | 4f10c1a284829802c9220cb82666c88af05fd017 /ci/envs/host-config | |
parent | 7d8bfd26b45b511898825a24ecf0977a336fac13 (diff) | |
parent | 611d8bd4c4027ebe8da338d3bbb10a6994975937 (diff) |
Merge "Code optimization and retrieving host_ip/test_time from host-config."
Diffstat (limited to 'ci/envs/host-config')
-rwxr-xr-x | ci/envs/host-config | 26 |
1 files changed, 26 insertions, 0 deletions
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 |