From 61f996b07f040376049522c9e8ee4469274607ce Mon Sep 17 00:00:00 2001 From: "John L. Hammond" Date: Thu, 22 Oct 2020 16:57:47 -0500 Subject: [PATCH] LU-14067 test: skip compile tests on aarch64 aarch64 gcc segfaults trying to compile our headers so skip sanity 400a, 400b and sanity-lnet 300 on aarch64. Test-Parameters: trivial clientdistro=el8.1 clientarch=aarch64 Signed-off-by: John L. Hammond Change-Id: I8322107919084c86a0cb6fc15730a49f96c03b22 Reviewed-on: https://review.whamcloud.com/40365 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Oleg Drokin Reviewed-by: Andreas Dilger Reviewed-by: James Nunez --- lustre/tests/sanity-lnet.sh | 6 ++++++ lustre/tests/sanity.sh | 2 ++ 2 files changed, 8 insertions(+) diff --git a/lustre/tests/sanity-lnet.sh b/lustre/tests/sanity-lnet.sh index 70d8b08..1c09c20 100755 --- a/lustre/tests/sanity-lnet.sh +++ b/lustre/tests/sanity-lnet.sh @@ -12,6 +12,12 @@ ONLY=${ONLY:-"$*"} ALWAYS_EXCEPT="$SANITY_LNET_EXCEPT " # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! +# skip the grant tests for ARM until they are fixed +if [[ $(uname -m) = aarch64 ]]; then + # bug number: LU-14067 + ALWAYS_EXCEPT+=" 300" +fi + [ "$SLOW" = "no" ] && EXCEPT_SLOW="" LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)} diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 891acb2..edc1dc9 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -61,6 +61,8 @@ if [[ $(uname -m) = aarch64 ]]; then ALWAYS_EXCEPT+=" $GRANT_CHECK_LIST" # bug number: LU-11671 LU-11667 ALWAYS_EXCEPT+=" 45 317" + # bug number: LU-14067 LU-14067 + ALWAYS_EXCEPT+=" 400a 400b" fi # skip splice tests on kernels >= 4.18.0 until they are fixed -- 1.8.3.1