From d6f8dfd5978d951bc8714aef1ced2054c2d81c06 Mon Sep 17 00:00:00 2001 From: Arshad Hussain Date: Mon, 21 Feb 2022 10:08:30 +0530 Subject: [PATCH] LU-15574 tests: Skip test sanity/77o in interop Test sanity/77o Server checksum proc entries was introduced in 2.14.55. During interop testing skip sanity/77o for MDS and OST version lesser than 2.14.55. Test-Parameters: trivial serverversion=2.14.0 testlist=sanity env=ONLY=77o Fixes: c18d5d892b62 LU-14889 lproc: Add server checksum_type Signed-off-by: Arshad Hussain Change-Id: Idb634ca349a6be01331057a473cc15747325a075 Reviewed-on: https://review.whamcloud.com/46568 Tested-by: jenkins Reviewed-by: Andreas Dilger Tested-by: Maloo --- lustre/tests/sanity.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 573fc82..79b3dce 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -10100,8 +10100,10 @@ test_77n() { run_test 77n "Verify read from a hole inside contiguous blocks with T10PI" test_77o() { - (( $CLIENT_VERSION >= $(version_code 2.14.54) )) || - skip "Need at least version 2.14.54" + (( $MDS1_VERSION >= $(version_code 2.14.55) )) || + skip "Need MDS version at least 2.14.55" + (( $OST1_VERSION >= $(version_code 2.14.55) )) || + skip "Need OST version at least 2.14.55" local ofd=obdfilter local mdt=mdt -- 1.8.3.1