summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/cyclicTestTrigger.sh8
-rwxr-xr-xci/envs/cyclictest.sh2
-rwxr-xr-xci/test_kvmfornfv.sh2
3 files changed, 6 insertions, 6 deletions
diff --git a/ci/cyclicTestTrigger.sh b/ci/cyclicTestTrigger.sh
index d8370fd71..6241452a2 100755
--- a/ci/cyclicTestTrigger.sh
+++ b/ci/cyclicTestTrigger.sh
@@ -29,12 +29,12 @@ function verifyGuestImage {
fi
}
-#Updating the pod.yaml file with HOST_IP,cyclictest-node-context.yaml with loops and interval
+#Updating the pod.yaml file with HOST_IP,kvmfornfv_cyclictest_idle_idle.yaml with loops and interval
function updateYaml {
cd $WORKSPACE/tests/
sed -ri "s/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/${HOST_IP}/" pod.yaml
- sed -ri "s/loops: [0-9]*/loops: ${testTime}/" cyclictest-node-context.yaml
- sed -ri "0,/interval: [0-9]*/s//interval: 1000/" cyclictest-node-context.yaml
+ sed -ri "s/loops: [0-9]*/loops: ${testTime}/" kvmfornfv_cyclictest_idle_idle.yaml
+ sed -ri "0,/interval: [0-9]*/s//interval: 1000/" kvmfornfv_cyclictest_idle_idle.yaml
}
#cleaning the environment after executing the test through yardstick.
@@ -83,7 +83,7 @@ function runCyclicTest {
#copying required files to run yardstick cyclic testcase
mv $WORKSPACE/build_output/kernel-${KERNELRPM_VERSION}*.rpm ${volume}/rpm
cp -r $WORKSPACE/ci/envs/* ${volume}/scripts
- cp -r $WORKSPACE/tests/cyclictest-node-context.yaml ${volume}
+ cp -r $WORKSPACE/tests/kvmfornfv_cyclictest_idle_idle.yaml ${volume}
cp -r $WORKSPACE/tests/pod.yaml ${volume}/scripts
#Launching ubuntu docker container to run yardstick
diff --git a/ci/envs/cyclictest.sh b/ci/envs/cyclictest.sh
index c5b980d77..8f0993032 100755
--- a/ci/envs/cyclictest.sh
+++ b/ci/envs/cyclictest.sh
@@ -9,7 +9,7 @@ source utils.sh
testType=$1 #daily/verify/merge
HOST_IP=$( getHostIP )
pod_config='/opt/scripts/pod.yaml'
-cyclictest_context_file='/opt/cyclictest-node-context.yaml'
+cyclictest_context_file='/opt/kvmfornfv_cyclictest_idle_idle.yaml'
if [ ! -f ${pod_config} ] ; then
echo "file ${pod_config} not found"
diff --git a/ci/test_kvmfornfv.sh b/ci/test_kvmfornfv.sh
index c739e807e..e9f520059 100755
--- a/ci/test_kvmfornfv.sh
+++ b/ci/test_kvmfornfv.sh
@@ -31,7 +31,7 @@ if ! verifyGuestImage;then
exit 1
fi
-#Update cyclictest-node-context.yaml with test_time and pod.yaml with IP
+#Update kvmfornfv_cyclictest_idle_idle.yaml with test_time and pod.yaml with IP
updateYaml
#Cleaning up the test environment before running cyclictest through yardstick.