From d59f1b03eee0f908a99a6ea80642685fcb621974 Mon Sep 17 00:00:00 2001 From: James Nunez Date: Thu, 13 Feb 2020 13:29:50 -0700 Subject: [PATCH] LU-12251 tests: stop running sanity-flr for PPC Stop running all sanity-flr tests for PPC client testing until we understand and the sanity-pfl test suite to passes all testing for PPC clients. Test-Parameters: trivial clientarch=ppc64 testlist=sanity-flr Test-Parameters: testlist=sanity-flr Signed-off-by: James Nunez Change-Id: Iee044e6995ed4f6cca5f6b7f92eee6b59cb7018b Reviewed-on: https://review.whamcloud.com/37563 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Emoly Liu Reviewed-by: Andreas Dilger --- lustre/tests/sanity-flr.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lustre/tests/sanity-flr.sh b/lustre/tests/sanity-flr.sh index a8b4127..d76e2da 100644 --- a/lustre/tests/sanity-flr.sh +++ b/lustre/tests/sanity-flr.sh @@ -15,9 +15,14 @@ init_logging ALWAYS_EXCEPT="$SANITY_FLR_EXCEPT " # Bug number for skipped test: LU-11381 -ALWAYS_EXCEPT+=" 201" +ALWAYS_EXCEPT+=" 201 " # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! +# skip all tests for PPC until we can get sanity-pfl to pass +if [[ $(uname -m) = ppc64 ]]; then + skip "Skip FLR testing for PPC clients" +fi + build_test_filter [[ "$MDS1_VERSION" -ge $(version_code 2.10.56) ]] || -- 1.8.3.1