From a198b292b5c5ebdb04d8afb29906b0b2da8bc40f Mon Sep 17 00:00:00 2001 From: Gianluca Zuccarelli Date: Fri, 20 Aug 2021 14:12:31 +0100 Subject: [PATCH] test/cases: include rhel9 in filesystem test --- test/cases/filesystem.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/cases/filesystem.sh b/test/cases/filesystem.sh index 3211635ee..293ff6167 100644 --- a/test/cases/filesystem.sh +++ b/test/cases/filesystem.sh @@ -6,7 +6,7 @@ source /etc/os-release -if [[ "${ID}-${VERSION_ID}" != "rhel-8.5" ]]; then +if [[ "${ID}-${VERSION_ID}" != "rhel-8.5" && "${ID}-${VERSION_ID}" != "rhel-9.0" ]]; then echo "$0 is only enabled for rhel-8.5; skipping..." exit 0 fi @@ -107,7 +107,7 @@ clean_up () { ################################################## ## -## RHEL8.5 custom filesystems test - success case +## RHEL8.5 & RHEL9.0 custom filesystems test - success case ## ################################################## @@ -162,7 +162,7 @@ sudo composer-cli blueprints delete rhel85-custom-filesystem > /dev/null ################################################## ## -## RHEL8.5 custom filesystems test - fail case +## RHEL8.5 & RHEL9.0 custom filesystems test - fail case ## ##################################################