From: Jian Yu Date: Thu, 15 Nov 2018 08:45:17 +0000 (-0800) Subject: LU-11596 tests: disable several sanity sub-tests for ARM X-Git-Tag: 2.12.0-RC1~33 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=ef38bdfd2b7e672e1886d5c9874e4749ce2ac258;ds=sidebyside LU-11596 tests: disable several sanity sub-tests for ARM The following sanity sub-tests are consistently failing on ARM clients: - 42d, 42e, 63a, 63b, 64a, 64b and 64c (LU-11596) - 45 (LU-11671) - 101c (LU-11665) - 103a (LU-11594) - 317 (LU-11667) This patch adds them to ALWAYS_EXCEPT list to exclude the failures, so as to make ARM client test session pass. They will be removed from the list and re-enabled in the patches that fix the failures. Test-Parameters: trivial Change-Id: I1728dc665c8a52f0fd88de8173f88ccee0c8772d Signed-off-by: Jian Yu Reviewed-on: https://review.whamcloud.com/33652 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: James Nunez Reviewed-by: Andreas Dilger Reviewed-by: James Simmons Reviewed-by: Nathaniel Clark --- diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index d81f090..0e33c79 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -20,6 +20,13 @@ if $SHARED_KEY; then ALWAYS_EXCEPT="$ALWAYS_EXCEPT 17n 60a 133g 300f" fi +if [[ $(uname -m) = aarch64 ]]; then + # bug number: LU-11596 (all below) + ALWAYS_EXCEPT+=" 42d 42e 63a 63b 64a 64b 64c" + # bug number: LU-11671 LU-11665 LU-11594 LU-11667 + ALWAYS_EXCEPT+=" 45 101c 103a 317" +fi + # Check Grants after these tests GRANT_CHECK_LIST="$GRANT_CHECK_LIST 42a 42b 42c 42d 42e 63a 63b 64a 64b 64c" SRCDIR=$(cd $(dirname $0); echo $PWD)