From 32155957a7de12a2324dc184350c737f8c1650d1 Mon Sep 17 00:00:00 2001 From: James Nunez Date: Tue, 23 Jun 2020 08:31:29 -0600 Subject: [PATCH] LU-13701 tests: stop running sanity-lnet tests sanity-lnet tests 204, 205, 206, 207 and 208 are failing at a very high rate for ARM client testing. We need to stop running these tests, add them to the ALWAYS_EXCEPT list, until we understand why these tests are failing. Test-Parameters: trivial testgroup=review-ldiskfs-arm Signed-off-by: James Nunez Change-Id: Ia3e970748d719f25b156666a0b37ac9d89535532 Reviewed-on: https://review.whamcloud.com/39155 Tested-by: jenkins Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: Andreas Dilger --- lustre/tests/sanity-lnet.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lustre/tests/sanity-lnet.sh b/lustre/tests/sanity-lnet.sh index 4f56596..d716353 100755 --- a/lustre/tests/sanity-lnet.sh +++ b/lustre/tests/sanity-lnet.sh @@ -7,11 +7,19 @@ set -e ONLY=${ONLY:-"$*"} + # bug number for skipped test: ALWAYS_EXCEPT="$SANITY_LNET_EXCEPT " -[ "$SLOW" = "no" ] && EXCEPT_SLOW="" # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! +# skip test ARM testing until they are fixed +if [[ $(uname -m) = aarch64 ]]; then + # bug number for skipped test: LU-13704 LU-13701 LU-13701 LU-13701 + ALWAYS_EXCEPT+=" 204 205 206 207 " +fi + +[ "$SLOW" = "no" ] && EXCEPT_SLOW="" + LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)} . $LUSTRE/tests/test-framework.sh -- 1.8.3.1