From: Alex Zhuravlev Date: Thu, 11 Apr 2024 07:49:12 +0000 (+0300) Subject: LU-17675 tests: disable sanity-flr/61a on RHEL9.3 X-Git-Tag: 2.15.63~91 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=df0b73906e34e124ab94ef3ab7438f8d400d99c9;p=fs%2Flustre-release.git LU-17675 tests: disable sanity-flr/61a on RHEL9.3 still failing a lot: Error: 'f61a.sanity-flr: atime: old '1712732591' != new '1712732585'' Failure Rate: 32.61% of most recent 92 runs, 8 skipped (all branches) Test-Parameters: trivial Signed-off-by: Alex Zhuravlev Change-Id: Id1b97d884f83b743a9ca6e72d21237689b5d19be Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/54731 Tested-by: jenkins Tested-by: Andreas Dilger Reviewed-by: Andreas Dilger Reviewed-by: Arshad Hussain Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/sanity-flr.sh b/lustre/tests/sanity-flr.sh index f570187..15de4e3 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) ]] ||