X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=ci%2Fenvs%2Fcyclictest.sh;h=4c5440d715b05f26dfbd536e22b00588e8d17218;hb=refs%2Fchanges%2F61%2F21261%2F5;hp=e4dd9931f6c5aa1aa7ed6f5af59be0c6077152ab;hpb=00bbca23ecc68278a7ef090e7e073b4e9736208e;p=kvmfornfv.git diff --git a/ci/envs/cyclictest.sh b/ci/envs/cyclictest.sh old mode 100644 new mode 100755 index e4dd9931f..4c5440d71 --- a/ci/envs/cyclictest.sh +++ b/ci/envs/cyclictest.sh @@ -4,8 +4,10 @@ ## Invoking this script from ubuntu docker container runs ## cyclictest through yardstick ########################################################### +source utils.sh -pod_config='/opt/pod.yaml' +HOST_IP=$( getHostIP ) +pod_config='/opt/scripts/pod.yaml' cyclictest_context_file='/opt/cyclictest-node-context.yaml' if [ ! -f ${pod_config} ] ; then @@ -18,6 +20,15 @@ if [ ! -f ${cyclictest_context_file} ] ; then exit 1 fi +#setting up of image for launching guest vm. +sudo ssh root@$HOST_IP "cp /root/images/guest1.qcow2 /root/" + #Running cyclictest through yardstick -yardstick task start ${cyclictest_context_file} -mv /tmp/yardstick.out /opt/ +yardstick -d task start ${cyclictest_context_file} +output=$? +chmod 777 /tmp/yardstick.out +cat /tmp/yardstick.out > /opt/yardstick.out +if [ $output != 0 ];then + echo "Someproblem with execution of Yardstick" + exit 1 +fi