Skip to content

Commit

Permalink
tests/kola: check only for rhcos based on 9.4 in composefs.enabled test
Browse files Browse the repository at this point in the history
Only 9.4 doesn't support composefs.
There are other issues on ppc64le and kernel-64k in el9,
so this test is denylisted in openshift/os repo.
  • Loading branch information
nikita-dubrovskii committed Jan 27, 2025
1 parent 6eec22e commit 09c1960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/kola/composefs/enabled
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ set -euo pipefail
# shellcheck disable=SC1091
. "$KOLA_EXT_DATA/commonlib.sh"

# RHCOS/SCOS based on 9.4 doesn't use composefs, but legacy sysroot.readonly flag
if ! is_fcos && [[ "$(get_rhel_ver)" = "9.4" ]]; then
# RHCOS based on 9.4 doesn't use composefs, but legacy sysroot.readonly flag
if is_rhcos && [[ "$(get_rhel_ver)" = "9.4" ]]; then
echo "skipping 9.4"
exit 0
fi
Expand Down

0 comments on commit 09c1960

Please sign in to comment.