From 0eef4b0818e7a1a42a54333fa713ef660c7e9404 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. Test-Parameters: trivial Signed-off-by: Qian Yingjin Change-Id: I3805b475c5f3d0b62dc6c57c4cd93f2bc1b67b76 --- lustre/tests/sanity.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lustre/tests/sanity.sh b/lustre/tests/sanity.sh index 1aa2d54..7df454b 100755 --- a/lustre/tests/sanity.sh +++ b/lustre/tests/sanity.sh @@ -104,6 +104,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 if grep -qi ubuntu /etc/os-release; then ubuntu_version=$(version_code $(sed -n -e 's/"//g' \ -- 1.8.3.1