Whamcloud - gitweb
LU-13701 tests: stop running sanity-lnet tests 55/39155/3
authorJames Nunez <jnunez@whamcloud.com>
Tue, 23 Jun 2020 14:31:29 +0000 (08:31 -0600)
committerOleg Drokin <green@whamcloud.com>
Fri, 26 Jun 2020 04:51:37 +0000 (04:51 +0000)
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 <jnunez@whamcloud.com>
Change-Id: Ia3e970748d719f25b156666a0b37ac9d89535532
Reviewed-on: https://review.whamcloud.com/39155
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
lustre/tests/sanity-lnet.sh

index 4f56596..d716353 100755 (executable)
@@ -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