1
0
mirror of https://github.com/containers/podman.git synced 2026-02-05 15:45:08 +01:00

test/system: skip podman volumes with XFS quotas on fedora

It fails due selinux, it is unlcear why so I filled #27759 for now to
track that so we can get the image update merged.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2025-12-12 14:16:39 +01:00
parent 7e3caaed84
commit 811c818fc9

View File

@@ -40,6 +40,11 @@ function teardown() {
skip_if_rootless "Quotas are only possible with root"
skip_if_remote "Requires --root flag, not possible w/ remote"
OS_RELEASE_ID="${OS_RELEASE_ID:-$(source /etc/os-release; echo $ID)}"
if [[ "$OS_RELEASE_ID" == "fedora" ]]; then
skip "FIXME #27759: There is a selinux problem with this test"
fi
# Minimum XFS filesystem size is 300mb
loop=$PODMAN_TMPDIR/disk.img
fallocate -l 300m ${loop}