From d0a53964f1bd7d8a21fc987df8d2f250b04f9ada Mon Sep 17 00:00:00 2001 From: James Nunez Date: Mon, 16 Nov 2020 17:00:03 -0700 Subject: [PATCH] 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 --- lustre/tests/sanityn.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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 -- 1.8.3.1