Disable vnf runs for aarch64 63/56763/5
authorDelia Popescu <delia.popescu@enea.com>
Fri, 27 Apr 2018 07:31:43 +0000 (10:31 +0300)
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>
Fri, 4 May 2018 20:28:59 +0000 (22:28 +0200)
Functest VNF tests are not adapted for aarch64.
The tests can be reactivated when they are adapted to execute
on aarch64.
JIRA: FUNCTEST-964

Change-Id: I2413a6eff831c8dd2751b7bc73ad583f55a00dcf
Signed-off-by: Delia Popescu <delia.popescu@enea.com>
jjb/functest/functest-alpine.sh

index 440b00a..1df9a55 100755 (executable)
@@ -172,10 +172,10 @@ elif [ ${FUNCTEST_MODE} == 'tier' ]; then
     tiers=(${FUNCTEST_TIER})
     run_tiers ${tiers}
 else
-    if [ ${DEPLOY_TYPE} == 'baremetal' ]; then
+    if [ ${DEPLOY_TYPE} == 'baremetal' ] && [ "${HOST_ARCH}" != "aarch64" ]; then
         tiers=(healthcheck smoke features vnf parser)
     else
-        tiers=(healthcheck smoke features)
+        tiers=(healthcheck smoke features parser)
     fi
     run_tiers ${tiers}
 fi