Whamcloud - gitweb
LU-14067 test: skip compile tests on aarch64 65/40365/3
authorJohn L. Hammond <jhammond@whamcloud.com>
Thu, 22 Oct 2020 21:57:47 +0000 (16:57 -0500)
committerOleg Drokin <green@whamcloud.com>
Fri, 23 Oct 2020 17:34:40 +0000 (17:34 +0000)
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 <jhammond@whamcloud.com>
Change-Id: I8322107919084c86a0cb6fc15730a49f96c03b22
Reviewed-on: https://review.whamcloud.com/40365
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: James Nunez <jnunez@whamcloud.com>
lustre/tests/sanity-lnet.sh
lustre/tests/sanity.sh

index 70d8b08..1c09c20 100755 (executable)
@@ -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)}
index 891acb2..edc1dc9 100755 (executable)
@@ -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