From c9c09bfbbef5a89f8b0e4096ae65d12b193a58a9 Mon Sep 17 00:00:00 2001 From: Bob Glossman Date: Fri, 28 Sep 2012 08:32:18 -0700 Subject: [PATCH] LU-2040 tests: interop test failure on mds-survey Add a version check to skip mds-survey in interop testing. This is known to fail and should not block testing. Signed-off-by: Bob Glossman Change-Id: I4d1ef336cecf525d7df54816cb9731ec6c6edd91 Reviewed-on: http://review.whamcloud.com/4124 Tested-by: Hudson Reviewed-by: Andreas Dilger Tested-by: Maloo Reviewed-by: Minh Diep Reviewed-by: Keith Mannthey --- lustre/tests/mds-survey.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lustre/tests/mds-survey.sh b/lustre/tests/mds-survey.sh index c75e359..3efaf9b 100644 --- a/lustre/tests/mds-survey.sh +++ b/lustre/tests/mds-survey.sh @@ -23,6 +23,10 @@ if [ -z ${MDSSURVEY} ]; then skip_env "mds-survey not found" && exit fi +if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.51) ]; then + skip_env "Need MDS version at least 2.3.51" && exit +fi + build_test_filter check_and_setup_lustre -- 1.8.3.1