From df0c9719ed4e7b85877d439945d374193ad6bf9a Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Fri, 7 Feb 2025 10:12:53 +0100 Subject: [PATCH] test: Skip NFS related tests on Fedora 42/43 Setting up an NFS pool triggers a kernel oops: https://bugzilla.redhat.com/show_bug.cgi?id=2344326 This cannot be recovered from and breaks all subsequent tests and the VM, so skip the pool tests wholesale. --- test/check-machines-disks | 2 ++ test/check-machines-storage-pools | 2 ++ 2 files changed, 4 insertions(+) diff --git a/test/check-machines-disks b/test/check-machines-disks index 592c5132a..6c46fb9af 100755 --- a/test/check-machines-disks +++ b/test/check-machines-disks @@ -864,6 +864,8 @@ class TestMachinesDisks(machineslib.VirtualMachinesCase): @testlib.skipImage("triggers kernel oops, https://issues.redhat.com/browse/RHEL-67841", "rhel-10*", "centos-10") + @testlib.skipImage("NFS kernel oops https://bugzilla.redhat.com/show_bug.cgi?id=2344326", + "fedora-42", "fedora-43") def testAddDiskNFS(self): b = self.browser m = self.machine diff --git a/test/check-machines-storage-pools b/test/check-machines-storage-pools index 0e030f511..7b72ae269 100755 --- a/test/check-machines-storage-pools +++ b/test/check-machines-storage-pools @@ -23,6 +23,8 @@ import machineslib import testlib +@testlib.skipImage("NFS kernel oops https://bugzilla.redhat.com/show_bug.cgi?id=2344326", + "fedora-42", "fedora-43") @testlib.nondestructive class TestMachinesStoragePools(machineslib.VirtualMachinesCase):