From: James Nunez Date: Wed, 30 Oct 2019 16:47:16 +0000 (-0600) Subject: LU-12895 tests: stop running tests for SSK and SELinux X-Git-Tag: 2.12.90~5 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F16%2F36616%2F7;p=fs%2Flustre-release.git LU-12895 tests: stop running tests for SSK and SELinux There are a few tests that crash consistently when Shared Secret Key (SSK) and/or SELinux are enabled. We need to stop running them, by adding them to the ALWAYS_EXCEPT list, until we can find a solution. sanity test 185, 230b, 230d, 272a recovery-small test 110k, 136 Test-Parameters: trivial Test-Parameters: testgroup=review-dne-ssk Test-Parameters: testgroup=review-dne-selinux Test-Parameters: testgroup=review-dne-selinux-ssk Signed-off-by: James Nunez Change-Id: I0af5f0c9d0d3c56a79e6558f2ce9f4e5a0a2d4c5 Reviewed-on: https://review.whamcloud.com/36616 Tested-by: jenkins Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: Andreas Dilger --- diff --git a/lustre/tests/recovery-small.sh b/lustre/tests/recovery-small.sh index 891ac23..5cac794 100755 --- a/lustre/tests/recovery-small.sh +++ b/lustre/tests/recovery-small.sh @@ -11,9 +11,17 @@ init_test_env $@ init_logging ALWAYS_EXCEPT="$RECOVERY_SMALL_EXCEPT " -# bug number for skipped test: -ALWAYS_EXCEPT+=" " -# UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! +if $SHARED_KEY; then + # bug number for skipped test: LU-12896 + ALWAYS_EXCEPT+=" 110k" + # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! +fi + +selinux_status=$(getenforce) +if [ "$selinux_status" != "Disabled" ]; then + # bug number for skipped test: LU-12928 + $SHARED_KEY && ALWAYS_EXCEPT+=" 136" +fi require_dsh_mds || exit 0 diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 62ff94f..965ebda 100644 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -45,8 +45,14 @@ ALWAYS_EXCEPT+=" 42a 42b 42c " ALWAYS_EXCEPT+=" 407 312 " if $SHARED_KEY; then - # bug number: LU-9795 LU-9795 LU-9795 LU-9795 - ALWAYS_EXCEPT+=" 17n 60a 133g 300f " + # bug number: LU-9795 LU-9795 LU-9795 LU-9795 LU-12781 + ALWAYS_EXCEPT+=" 17n 60a 133g 300f 272a" +fi + +selinux_status=$(getenforce) +if [ "$selinux_status" != "Disabled" ]; then + # bug number: LU-12895 LU-12469 LU-12469 + ALWAYS_EXCEPT+=" 185a 230b 230d" fi # skip the grant tests for ARM until they are fixed