From 060dcd91cd26815edf9fb1f5b1d7fc8d9bf24bbe Mon Sep 17 00:00:00 2001 From: James Nunez Date: Tue, 3 Mar 2015 10:39:45 -0700 Subject: [PATCH] LU-6319 tests: Clean up sanityn ALWAYS_EXCEPT list At some point between Lustre 1.8 and 2.1, sanityn test 22 was removed. Test number 22 is still included in the ALWAYS_EXCEPT list and in the EXCEPT list; the list of tests that will not be run under normal (autotest) testing. Remove test 22 from the ALWAYS_EXCEPT and EXCEPT lists. Also, tests 11 and 14 are skipped for SUSE10. All Lustre branches from b2_4 to current master are not built for and are no longer tested on SLES10. Remove the check for SUSE10 and remove tests 11 and 14 from the ALWAYS_EXCEPT list. Signed-off-by: James Nunez Change-Id: I2222770874c6c2da816cfd54b371ddc9c0da370b Reviewed-on: http://review.whamcloud.com/13953 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Bob Glossman Reviewed-by: Jian Yu Reviewed-by: Oleg Drokin --- lustre/tests/sanityn.sh | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/lustre/tests/sanityn.sh b/lustre/tests/sanityn.sh index d66cd0fc..b170ac7 100644 --- a/lustre/tests/sanityn.sh +++ b/lustre/tests/sanityn.sh @@ -3,18 +3,11 @@ set -e ONLY=${ONLY:-"$*"} -# bug number for skipped test: 3192 LU-1205 15528/3811 16929 9977 15528/11549 18080 -ALWAYS_EXCEPT=" 14b 18c 19 22 28 29 35 $SANITYN_EXCEPT" +# bug number for skipped test: 3192 LU-1205 15528/3811 9977 15528/11549 18080 +ALWAYS_EXCEPT=" 14b 18c 19 28 29 35 $SANITYN_EXCEPT" # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! -# bug number for skipped test: 12652 12652 -grep -q 'Enterprise Server 10' /etc/SuSE-release 2> /dev/null && - ALWAYS_EXCEPT="$ALWAYS_EXCEPT 11 14" || true - -# It will be ported soon. -EXCEPT="$EXCEPT 22" - -SRCDIR=`dirname $0` +SRCDIR=$(dirname $0) PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH SIZE=${SIZE:-40960} -- 1.8.3.1