]> git.feebdaed.xyz Git - 0xmirror/podman.git/commitdiff
test/system: skip podman volumes with XFS quotas on fedora
authorPaul Holzinger <pholzing@redhat.com>
Fri, 12 Dec 2025 13:16:39 +0000 (14:16 +0100)
committerPaul Holzinger <pholzing@redhat.com>
Fri, 12 Dec 2025 13:16:39 +0000 (14:16 +0100)
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>
test/system/161-volume-quotas.bats

index fb49d21cd22c1facafebda5aea1699b3ee2da965..9d9273035d5f52c6a74874f11020bfa281853997 100644 (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}