From c3e6f3cd54b8666f9ac11f6e2036e9aab706479f Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Thu, 12 Jun 2025 16:52:03 -0400 Subject: [PATCH] Don't run format-version-forward-back on el8, either This test compiles an earlier commit from the tree that is starting to fail due to various changes on the OS level, most recently due to sparse issues with newer kernel headers. This problem will likely increase in the future as we add more supported releases. We opt to just only run this test on el7 for now. While we could have made this skip sparse checks that fail it on el8, it will suffice at this point if this just works on one of the supported OS versions during testing. Signed-off-by: Auke Kok --- tests/tests/format-version-forward-back.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests/format-version-forward-back.sh b/tests/tests/format-version-forward-back.sh index a5dde26b..04d6f907 100644 --- a/tests/tests/format-version-forward-back.sh +++ b/tests/tests/format-version-forward-back.sh @@ -11,8 +11,8 @@ # format version. # -# not supported on el9! -if [ $(source /etc/os-release ; echo ${VERSION_ID:0:1}) -gt 8 ]; then +# not supported on el8 or higher +if [ $(source /etc/os-release ; echo ${VERSION_ID:0:1}) -gt 7 ]; then t_skip_permitted "Unsupported OS version" fi