From 7955e2c62e7c97c2e56e1bfc8d7598f2e80a4e52 Mon Sep 17 00:00:00 2001 From: James Nunez Date: Thu, 19 Jul 2018 16:36:27 -0600 Subject: [PATCH] LU-11161 tests: stop running sanity test 160g When run with two or more MDSs, sanity test 160g will fail due to expecting a changelog user being deregistered on all MDSs. In order to stop sanity 160g from failing, add it to the ALWAYS_EXCEPT list when running in a DNE environment which results in the test not being executed. Test-Parameters: trivial Test-Parameters: testlist=sanity mdtcount=2 mdscount=2 Signed-off-by: James Nunez Change-Id: I091f148a3da820cad0103aead559a96c54c9fe8b Reviewed-on: https://review.whamcloud.com/32844 Reviewed-by: Andreas Dilger Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Oleg Drokin --- lustre/tests/sanity.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index dc04e97..8b3b7a1 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -59,6 +59,11 @@ init_test_env $@ . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh} init_logging +if [[ $MDSCOUNT -gt 1 ]]; then + # bug number: LU-11161 + ALWAYS_EXCEPT+=" 160g" +fi + # 5 12 (min)" [ "$SLOW" = "no" ] && EXCEPT_SLOW="27m 64b 68 71 115 300o" -- 1.8.3.1