From 7914ce3a877f5a08b41050ab5d590d8b3b84b2f7 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Fri, 5 Aug 2022 14:19:41 -0600 Subject: [PATCH] LU-15548 tests: skip conf-sanity/131 for older servers Skip conf-sanity.sh test_131 when running against older servers that do not support the trusted.projid xattr. Lustre-change: https://review.whamcloud.com/48151 Lustre-commit: 5fefbd10786f3f8705d2251071d8778d0de2835d Test-Parameters: trivial testlist=conf-sanity env=ONLY=131 Test-Parameters: testlist=conf-sanity env=ONLY=131 serverversion=2.14.0 Fixes: e4d07f2c30 ("LU-12056 ldiskfs: add trusted.projid virtual xattr") Signed-off-by: Andreas Dilger Change-Id: If1858502ab50ffd10e494eab793e3bc0f883fe9e Reviewed-on: https://review.whamcloud.com/48264 Tested-by: jenkins Tested-by: Maloo --- lustre/tests/conf-sanity.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh index 75110dd..e8d9128 100644 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -9246,6 +9246,8 @@ run_test 127 "direct io overwrite on full ost" test_131() { [ "$mds1_FSTYPE" == "ldiskfs" ] || skip "ldiskfs only test" + (( $MDS1_VERSION >= $(version_code 2.14.56.35) )) || + skip "Need MDS version at least 2.14.56.35" do_facet mds1 $DEBUGFS -R features $(mdsdevname 1) | grep -q project || skip "skip project quota not supported" -- 1.8.3.1