From a1de57d6fc1c292db47c2b0debf404d46dd6dc49 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 2 May 2024 09:29:41 +0300 Subject: [PATCH] nixos/all-tests: skip hibernate test for now QEMU 8.2.3 crashes when hibernating. Disable the test for now to allow channels to advance again. --- nixos/release-combined.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 39cbe85579ae..d1773da9afa6 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -82,7 +82,9 @@ in rec { (onFullSupported "nixos.tests.gitlab") (onFullSupported "nixos.tests.gnome") (onFullSupported "nixos.tests.gnome-xorg") - (onSystems ["x86_64-linux"] "nixos.tests.hibernate") + # FIXME: broken by QEMU 8.2.3 upgrade, reenable when fixed + # Upstream issue: https://gitlab.com/qemu-project/qemu/-/issues/2321 + # (onSystems ["x86_64-linux"] "nixos.tests.hibernate") (onFullSupported "nixos.tests.i3wm") (onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSimple") (onSystems ["x86_64-linux"] "nixos.tests.installer.btrfsSubvolDefault")