nixos/tests: Remove tests.boot.boot* prefixes
As @bobvanderlinden suggests in #13585: "Looks like that cleans things up quite a bit! Just one aesthetics note, the boot tests could now be renamed from boot.bootBiosCdrom to boot.biosCdrom in nixos/tests/boot.nix:L33. That makes them more consistent with the other tests." Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
e45c211b50
commit
1f89aa6c7f
|
@ -63,7 +63,7 @@ in rec {
|
||||||
(all nixos.tests.installer.btrfsSimple)
|
(all nixos.tests.installer.btrfsSimple)
|
||||||
(all nixos.tests.installer.btrfsSubvols)
|
(all nixos.tests.installer.btrfsSubvols)
|
||||||
(all nixos.tests.installer.btrfsSubvolDefault)
|
(all nixos.tests.installer.btrfsSubvolDefault)
|
||||||
(all nixos.tests.boot.bootBiosCdrom)
|
(all nixos.tests.boot.biosCdrom)
|
||||||
(all nixos.tests.ipv6)
|
(all nixos.tests.ipv6)
|
||||||
(all nixos.tests.kde4)
|
(all nixos.tests.kde4)
|
||||||
#(all nixos.tests.lightdm)
|
#(all nixos.tests.lightdm)
|
||||||
|
|
|
@ -30,17 +30,17 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
bootBiosCdrom = makeBootTest "bios-cdrom" ''
|
biosCdrom = makeBootTest "bios-cdrom" ''
|
||||||
cdrom => glob("${iso}/iso/*.iso")
|
cdrom => glob("${iso}/iso/*.iso")
|
||||||
'';
|
'';
|
||||||
bootBiosUsb = makeBootTest "bios-usb" ''
|
biosUsb = makeBootTest "bios-usb" ''
|
||||||
usb => glob("${iso}/iso/*.iso")
|
usb => glob("${iso}/iso/*.iso")
|
||||||
'';
|
'';
|
||||||
bootUefiCdrom = makeBootTest "uefi-cdrom" ''
|
uefiCdrom = makeBootTest "uefi-cdrom" ''
|
||||||
cdrom => glob("${iso}/iso/*.iso"),
|
cdrom => glob("${iso}/iso/*.iso"),
|
||||||
bios => '${pkgs.OVMF}/FV/OVMF.fd'
|
bios => '${pkgs.OVMF}/FV/OVMF.fd'
|
||||||
'';
|
'';
|
||||||
bootUefiUsb = makeBootTest "uefi-usb" ''
|
uefiUsb = makeBootTest "uefi-usb" ''
|
||||||
usb => glob("${iso}/iso/*.iso"),
|
usb => glob("${iso}/iso/*.iso"),
|
||||||
bios => '${pkgs.OVMF}/FV/OVMF.fd'
|
bios => '${pkgs.OVMF}/FV/OVMF.fd'
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user