aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Siemsen <ralph.siemsen@linaro.org>2022-01-19 20:20:19 -0500
committerRalph Siemsen <ralph.siemsen@linaro.org>2022-01-19 20:21:02 -0500
commitcb2fc6eaef4cf5b4a56d0527515077da14198658 (patch)
tree4f27af381f848387b184f510a5b7f71f9945f42c
parent31aed2b5d2660f9674db6fb917f749b557ed360a (diff)
se: skip LAVA test submission for am64x
Change-Id: Ieb0aff0bdd9331115b1ccaca43a817bc90b2c25e
-rwxr-xr-xschneider-openembedded/submit_for_testing.sh17
1 files changed, 14 insertions, 3 deletions
diff --git a/schneider-openembedded/submit_for_testing.sh b/schneider-openembedded/submit_for_testing.sh
index 9532eaf69a..36e986a690 100755
--- a/schneider-openembedded/submit_for_testing.sh
+++ b/schneider-openembedded/submit_for_testing.sh
@@ -52,17 +52,28 @@ templates_rzn1d_network=( \
)
templates_rzn1d_full=( ${templates_rzn1d_network[@]} )
-if [ "${DEVICE_TYPE}" == "rzn1d" ]; then
+case "${DEVICE_TYPE}" in
+ rzn1d)
templates_minimal=( ${templates_common_minimal[@]} ${templates_rzn1d_minimal[@]} )
templates_normal=( ${templates_common_normal[@]} ${templates_rzn1d_normal[@]} )
templates_network=( ${templates_common_network[@]} ${templates_rzn1d_network[@]} )
templates_full=( ${templates_common_full[@]} ${templates_rzn1d_full[@]} )
-else
+ ;;
+ soca9)
templates_minimal=( ${templates_common_minimal[@]} ${templates_soca9_minimal[@]} )
templates_normal=( ${templates_common_normal[@]} ${templates_soca9_normal[@]} )
templates_network=( ${templates_common_network[@]} ${templates_soca9_network[@]} )
templates_full=( ${templates_common_full[@]} ${templates_soca9_full[@]} )
-fi
+ ;;
+ am64x)
+ echo "No LAVA tests for am64x"
+ exit 0
+ ;;
+ *)
+ echo "unknown DEVICE_TYPE in submit_for_testing.sh"
+ exit 1
+ ;;
+esac
case $TEST_LEVEL in
"none" | "0")