From 0d30fcca8a6ba5c791ca5c006e10bc268231b0e2 Mon Sep 17 00:00:00 2001 From: Vikentsi Lapa Date: Thu, 28 Jan 2021 16:08:38 +0000 Subject: [PATCH] LU-14314 tests: skip test_16e from sanityn To avoid test failure skip test_16e from sanityn when Lustre version is below 2.13.53 on MDS server Fixes: 92d799217aea ("LU-13227 sanityn 16a FAIL: fsx with O_DIRECT failed.") Signed-off-by: Vikentsi Lapa Change-Id: I562df7e02a9484fbc037597f012943cefa480fda Test-Parameters: trivial testlist=sanityn Reviewed-on: https://review.whamcloud.com/41353 Reviewed-by: Andreas Dilger Tested-by: jenkins Tested-by: Maloo Reviewed-by: James Nunez --- lustre/tests/sanityn.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lustre/tests/sanityn.sh b/lustre/tests/sanityn.sh index 0b82cb9..7b2a1f6 100755 --- a/lustre/tests/sanityn.sh +++ b/lustre/tests/sanityn.sh @@ -508,6 +508,11 @@ test_16d() { run_test 16d "Verify DIO and buffer IO with two clients" test_16e() { # LU-13227 + # issue: LU-14314 + + (( "$MDS1_VERSION" >= $(version_code 2.13.53) )) || + skip "Need MDS version at least 2.13.53" + local file1=$DIR1/$tfile local file2=$DIR2/$tfile -- 1.8.3.1