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.
This commit is contained in:
Jade Lovelace 2024-05-13 23:34:03 -07:00
parent bf4bbe7598
commit 099671c419

View File

@ -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()