From 672abdef2808f81ec137cf37e9dd1d2af895b8cd Mon Sep 17 00:00:00 2001 From: Jian Yu Date: Tue, 8 Oct 2024 16:56:05 -0700 Subject: [PATCH] LU-18323 tests: skip sanity/27T for OSTs < 2.15.65.18 Skip sanity test_27T for OSTs < 2.15.65.18 since the test depends on changes made to the OST code on the server. Test-Parameters: trivial testlist=sanity env=ONLY=27T serverversion=2.15.5 Change-Id: I96b134f3ade1d417adf751a69cdcfc71c15b4d75 Fixes: 8a865c65c6 ("LU-17567 tests: improve sanity.sh:test_27T") Fixes: ccaff8d3c0 ("LU-17567 tests: skip sanity/27T for older OSTs") Signed-off-by: Jian Yu Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/56615 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Sarah Liu Reviewed-by: Oleg Drokin --- lustre/tests/sanity.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index a6ad1d1..c347b8007 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -3529,8 +3529,8 @@ test_27R() { run_test 27R "test max_stripecount limitation when stripe count is set to -1" test_27T() { - (( $OST1_VERSION >= $(version_code 2.14.57.71) )) || - skip "need ost1 >= v2_14_57-71-g73d5ee7033 for ENOSPC fix" + (( $OST1_VERSION >= $(version_code 2.15.65.18) )) || + skip "need ost1 >= v2_15_65-18-g8a865c65c691 for ENOSPC fix" [ $(facet_host client) == $(facet_host ost1) ] && skip "need ost1 and client on different nodes" -- 1.8.3.1