From c0ce8afc0bc45ce2d06c81d6aa7dbc688cd7e6e3 Mon Sep 17 00:00:00 2001 From: Andreas Dilger Date: Thu, 28 Mar 2024 16:05:24 -0600 Subject: [PATCH] LU-17675 tests: skip sanity-flr/61a for el9.3 The atime update appears to be broken in this kernel, skip the test for now. Test-Parameters: trivial testlist=sanity env=ONLY=61 clientdistro=el9.3 Signed-off-by: Andreas Dilger Change-Id: I2e27e2fbaa9a6a9e11049c4629b10998b3824c12 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/54612 Tested-by: jenkins Reviewed-by: Arshad Hussain Reviewed-by: Jian Yu Reviewed-by: Oleg Drokin --- lustre/tests/sanity-flr.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lustre/tests/sanity-flr.sh b/lustre/tests/sanity-flr.sh index b1c05df..95e0d00 100644 --- a/lustre/tests/sanity-flr.sh +++ b/lustre/tests/sanity-flr.sh @@ -28,6 +28,14 @@ if [[ "$ost1_FSTYPE" == "zfs" ]]; then ALWAYS_EXCEPT+=" 49a " fi +if [ -r /etc/redhat-release ]; then + rhel_version=$(cat /etc/redhat-release | + sed -e 's/^[^0-9.]*//g' | sed -e 's/[ ].*//') + if (( $(version_code $rhel_version) >= $(version_code 9.3.0) )); then + always_except LU-17675 61a + fi +fi + build_test_filter [[ "$MDS1_VERSION" -ge $(version_code 2.10.56) ]] || -- 1.8.3.1