From: James Nunez Date: Tue, 17 Nov 2020 00:00:03 +0000 (-0700) Subject: LU-11597 tests: skip sanityn tests for PPC X-Git-Tag: 2.12.7-RC1~69 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=d0a53964f1bd7d8a21fc987df8d2f250b04f9ada;hp=e886e3308f29abbdbe570d1c9571d485caa41626;p=fs%2Flustre-release.git LU-11597 tests: skip sanityn tests for PPC Several sanityn test suite tests fail consistenly when testing PPC clients. These tests should be skipped, added to the ALWAYS_EXCEPT list, until the failures are understood and fixed. Tests to skip in sanityn are 16a (LU-11597) 71a (LU-11787) Lustre-change: https://review.whamcloud.com/37561 Lustre-commit: c27e5fe50ca3de4c9d3dbb024a0704ee3cc4e15c Test-Parameters: trivial clientdistro=el7.8 clientarch=ppc64 testlist=sanityn Signed-off-by: James Nunez Change-Id: I39cc9d22e8a47eb8ef59ce8d30e1b6e9aa616a9a Reviewed-on: https://review.whamcloud.com/40660 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger --- diff --git a/lustre/tests/sanityn.sh b/lustre/tests/sanityn.sh index cd56b6c..6f4d639 100755 --- a/lustre/tests/sanityn.sh +++ b/lustre/tests/sanityn.sh @@ -3,11 +3,17 @@ set -e ONLY=${ONLY:-"$*"} -# bug number for skipped test: 9977/LU-7105 -# LU-7105 -ALWAYS_EXCEPT=" 28 $SANITYN_EXCEPT" +ALWAYS_EXCEPT="$SANITYN_EXCEPT " +# bug number for skipped test: LU-7105 +ALWAYS_EXCEPT+=" 28 " # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! +#skip tests for PPC until they are fixed +if [[ $(uname -m) = ppc64 ]]; then + # bug number: LU-11597 LU-11787 + ALWAYS_EXCEPT+=" 16a 71a " +fi + SRCDIR=$(dirname $0) PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH