From f8a8d3f83db67be9dcc724ff49757cce81b13a5e Mon Sep 17 00:00:00 2001 From: "John L. Hammond" Date: Thu, 22 Oct 2020 17:09:03 -0500 Subject: [PATCH] LU-13745 tests: skip sanity test_426 for 4.15+ Add sanity test_426 to ALWAYS_EXCEPT for newer client kernels because it is crashing 100% since "LU-13745 test: add splice test for lustre" was landed. Test-Parameters: trivial clientdistro=ubuntu1804 Signed-off-by: John L. Hammond Change-Id: I84a722a27c3e8a572c20b46ca9daaf44e8720b54 Reviewed-on: https://review.whamcloud.com/40366 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: James Nunez --- 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 edc1dc9..44f56460 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -65,8 +65,8 @@ if [[ $(uname -m) = aarch64 ]]; then ALWAYS_EXCEPT+=" 400a 400b" fi -# skip splice tests on kernels >= 4.18.0 until they are fixed -if [ $LINUX_VERSION_CODE -ge $(version_code 4.18.0) ]; then +# skip splice tests on kernels >= 4.15.0 until they are fixed +if [ $LINUX_VERSION_CODE -ge $(version_code 4.15.0) ]; then # bug number: LU-14045 ALWAYS_EXCEPT+=" 426" fi -- 1.8.3.1