Merge "Disable vnf runs for aarch64"
authorAric Gardner <agardner@linuxfoundation.org>
Mon, 7 May 2018 13:59:45 +0000 (13:59 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Mon, 7 May 2018 13:59:45 +0000 (13:59 +0000)
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