From ccaff8d3c0d7213c59ad7440d06de53de4c0a925 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Wed, 4 Sep 2024 20:35:30 -0600 Subject: [PATCH] LU-17567 tests: skip sanity/27T for older OSTs Skip sanity test_27T for OSTs < 2.14.57.71 since the test depends on changes made to the OST code on the server. Test-Parameters: trivial testlist=sanity env=ONLY=27T serverversion=2.14 Fixes: 73d5ee7033 ("LU-15459 llite: clear async errors on write commit sync") Signed-off-by: Andreas Dilger Change-Id: I15dad430c52a351e21cf85511e2c55de07740087 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/56261 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Vladimir Saveliev Reviewed-by: Andrew Perepechko Reviewed-by: Oleg Drokin --- lustre/tests/sanity.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 556bc23..edc57f6 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -3528,6 +3528,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" [ $(facet_host client) == $(facet_host ost1) ] && skip "need ost1 and client on different nodes" -- 1.8.3.1