From 17bfe77e45a84cee0dca9fc205d75e14291c9cbb Mon Sep 17 00:00:00 2001 From: Qian Yingjin Date: Tue, 29 Oct 2024 11:25:33 +0800 Subject: [PATCH] LU-18298 tests: skip sanity-pcc/test_1{c,d} on SLES15 SP5 Skip the sanity-pcc/test_1{c, d} failure on SLES15 SP3 - SP5. However, they passed on SLES15 SP6. Test-Parameters: trivial Signed-off-by: Qian Yingjin Change-Id: I08fd0a192307f0072cc82033958dd8239ea507d5 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/56809 Tested-by: jenkins Tested-by: Maloo Tested-by: Jian Yu Reviewed-by: Jian Yu Reviewed-by: Andreas Dilger Reviewed-by: Oleg Drokin --- lustre/tests/sanity-pcc.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lustre/tests/sanity-pcc.sh b/lustre/tests/sanity-pcc.sh index eca79a1..28870a6 100755 --- a/lustre/tests/sanity-pcc.sh +++ b/lustre/tests/sanity-pcc.sh @@ -64,6 +64,13 @@ if [[ -r /etc/redhat-release ]]; then fi fi +if [[ "$CLIENT_OS_ID_LIKE" =~ "suse" ]]; then + if (( CLIENT_OS_VERSION_CODE >= $(version_code 15.3) && + CLIENT_OS_VERSION_CODE <= $(version_code 15.5) )); then + always_except LU-18298 1c 1d # passed on SLES15 SP6 + fi +fi + build_test_filter # if there is no CLIENT1 defined, some tests can be ran on localhost -- 1.8.3.1