Fix container list logics 25/67225/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Sun, 10 Mar 2019 10:25:33 +0000 (11:25 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Sun, 10 Mar 2019 10:28:37 +0000 (11:28 +0100)
The previous logic is buggy (e.g. vnfs are executed if arm64 [1])
Vnf images have been hugely reduced that allows testing them in
virtual deployments (see functest-virtual [2])

[1] https://build.opnfv.org/ci/view/functest%20(Installer%20gates)/job/functest-fuel-baremetal-daily-master/lastFailedBuild/console
[2] https://build.opnfv.org/ci/view/functest/job/functest-latest-daily/76/

Change-Id: Iec26708b66cbf3fe92849425f2afdf39a89d4bbe
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
jjb/functest/functest-alpine.sh

index 8c29249..7771f17 100755 (executable)
@@ -263,21 +263,15 @@ elif [ ${FUNCTEST_MODE} == 'tier' ]; then
 else
     tests=()
     skip_tests=0
-    if [ ${DEPLOY_TYPE} == 'baremetal' ] && [ "${HOST_ARCH}" != "aarch64" ]; then
-        if [[ ${BRANCH} == "stable/fraser" ]]; then
-            tiers=(healthcheck smoke features vnf parser)
-            tests=(tempest_full_parallel)
-        elif [[ ${BRANCH} == "stable/gambia" ]]; then
+    if [ "${HOST_ARCH}" != "aarch64" ]; then
+        if [[ ${BRANCH} == "stable/gambia" ]]; then
             tiers=(healthcheck smoke benchmarking features vnf components)
         else
             tiers=(healthcheck smoke benchmarking features vnf)
         fi
     else
-        if [[ ${BRANCH} == "stable/fraser" ]]; then
-            tiers=(healthcheck smoke features parser)
-            tests=(tempest_full_parallel)
-        elif [[ ${BRANCH} == "stable/gambia" ]]; then
-            tiers=(healthcheck smoke benchmarking features vnf components)
+        if [[ ${BRANCH} == "stable/gambia" ]]; then
+            tiers=(healthcheck smoke benchmarking features components)
         else
             tiers=(healthcheck smoke benchmarking features)
         fi