From 099671c419e95121c4328909bce6ef94f75bb890 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Mon, 13 May 2024 23:34:03 -0700 Subject: [PATCH] nixosTests.installer: test nixos-option anew Someone put a FIXME in here. The FIXME looked really old. I uncommented out the thing and it still passes. Calling this fixed. --- nixos/tests/installer.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 7e835041eb39..b034d21146f3 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -249,12 +249,11 @@ let with subtest("Check whether nixos-rebuild works"): target.succeed("nixos-rebuild switch >&2") - # FIXME: Nix 2.4 broke nixos-option, someone has to fix it. - # with subtest("Test nixos-option"): - # kernel_modules = target.succeed("nixos-option boot.initrd.kernelModules") - # assert "virtio_console" in kernel_modules - # assert "List of modules" in kernel_modules - # assert "qemu-guest.nix" in kernel_modules + with subtest("Test nixos-option"): + kernel_modules = target.succeed("nixos-option boot.initrd.kernelModules") + assert "virtio_console" in kernel_modules + assert "List of modules" in kernel_modules + assert "qemu-guest.nix" in kernel_modules target.shutdown()