diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 98ba04119ea511..f452cf1f0c74dc 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -382,6 +382,7 @@ in { grocy = handleTest ./grocy.nix {}; grow-partition = runTest ./grow-partition.nix; grub = handleTest ./grub.nix {}; + grub-ng = handleTest ./grub.nix { ng = true; }; guacamole-server = handleTest ./guacamole-server.nix {}; guix = handleTest ./guix {}; gvisor = handleTest ./gvisor.nix {}; diff --git a/nixos/tests/grub.nix b/nixos/tests/grub.nix index e0875e70f6a517..cffaa1bc049bf2 100644 --- a/nixos/tests/grub.nix +++ b/nixos/tests/grub.nix @@ -1,4 +1,4 @@ -import ./make-test-python.nix ({ lib, ... }: { +import ./make-test-python.nix ({ lib, ng ? false, ... }: { name = "grub"; meta = with lib.maintainers; { @@ -13,6 +13,8 @@ import ./make-test-python.nix ({ lib, ... }: { enable = true; users.alice.password = "supersecret"; + useInstallNg = ng; + # OCR is not accurate enough extraConfig = "serial; terminal_output serial"; };