Adapt jobs to integrate yardstick
Integrating yardstick requires all jobs to be adapted accordingly.
- cloud-infra-test.sh: we now started using arguments to set values
explicitly.
- cloud-infra-periodic-engine.yaml: periodic runs now include yardstick
as well. it is ok to run yardstick kubernetes testing but it will probably
not work with an openstack deployment due to lower performance of virtual
deployments.
- cloud-infra-verify-engine.yaml: additional parameters are declared to
set variables explictly.
- cloud-infra-verify-test.yaml: we now verify changes coming to infra/test
repo for both of the test frameworks, functest and yardstick, to ensure
changes do not cause problems for any of these.
Change-Id: I2ec82bc7c0424ca190dcf51d032eec5e52855062
diff --git a/jjb/cloud-infra/cloud-infra-test.sh b/jjb/cloud-infra/cloud-infra-test.sh
index 952a7fd..2b85f0d 100644
--- a/jjb/cloud-infra/cloud-infra-test.sh
+++ b/jjb/cloud-infra/cloud-infra-test.sh
@@ -28,8 +28,8 @@
# Logic in this script should be kept at minimum and the changes should be pushed into
# the cloud infra test test.sh script.
-# execute cloud engine test.sh script
+# execute cloud engine test.sh script with arguments
cd $WORKSPACE
-./test/test.sh
+./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO
# vim: set ts=2 sw=2 expandtab: