diff options
author | kalyanreddy <reddyx.gundarapu@intel.com> | 2017-03-21 19:27:25 -0700 |
---|---|---|
committer | kalyanreddy <reddyx.gundarapu@intel.com> | 2017-03-22 12:36:20 +0530 |
commit | 611d8bd4c4027ebe8da338d3bbb10a6994975937 (patch) | |
tree | 2c6d949dc6396f7fa61cc349be27ec45b6588e9e /ci/envs/host-config | |
parent | b1495d4fa3175a3ffea301dedb9b0a60ca9ada44 (diff) |
Code optimization and retrieving host_ip/test_time from host-config.
This patch includes updated scripts to:
1.Select the host environment and test duration from host-config file
to execute the test cases based on the job type.
2.Remove code duplications like sourcing a file multiple times.
3.Make packet forwarding test cases execution look clear.
Change-Id: I88457b7f3dfacad1db2495090504974097228a4d
Signed-off-by: Gundarapu Kalyan Reddy <reddyx.gundarapu@intel.com>
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 |