From a6739c9c9a30964fa2cbbba67c425a0079c7291c Mon Sep 17 00:00:00 2001 From: Qian Yingjin Date: Thu, 7 Dec 2023 04:45:01 -0500 Subject: [PATCH] LU-17289 test: disable sanity/test_906 temporarily On the rhel9.3, the fio io_uring engine testing failed with error "Operation not permitted" on both local file systems (Ext4 and xfs) and Lustre: "fio: pid=4551, err=1/file:engines/io_uring.c:1047, func=io_queue_init, error=Operation not permitted" This is a generic failure in RHEL9.3. Thus we disable sanity/test_906 temporarily until the bug is fixed in RHEL9.3. Lustre-change: https://review.whamcloud.com/53362 Lustre-commit: TBD (from 0eef4b0818e7a1a42a54333fa713ef660c7e9404) Test-Parameters: trivial Signed-off-by: Qian Yingjin Change-Id: I3805b475c5f3d0b62dc6c57c4cd93f2bc1b67b76 Reviewed-on: https://review.whamcloud.com/c/ex/lustre-release/+/53546 Reviewed-by: Jian Yu Reviewed-by: Andreas Dilger Tested-by: jenkins Tested-by: Maloo --- lustre/tests/sanity.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 820e657..58b06e2 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -108,6 +108,14 @@ if [ -r /etc/SuSE-release ] || [ -r /etc/SUSE-brand ]; then [ $sles_version -lt $(version_code 12.0.0) ] && always_except LU-3703 234 +elif [ -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) -gt $(version_code 9.3.0) ]]; then + # disable test_906 temporarily until rhel9.3 solves the + # failure on fio io_uring I/O engine. + always_except LU-17289 906 + fi elif [ -r /etc/os-release ]; then os_version=$(version_code $(sed -n -e 's/"//g' -e 's/^VERSION_ID=//p' \ /etc/os-release)) -- 1.8.3.1