mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Fix evaluation of nixos tested
This commit is contained in:
parent
a34a0dfdc5
commit
01f0b1cf1a
@ -228,6 +228,10 @@ in rec {
|
|||||||
tests.installer.rebuildCD = forAllSystems (system: (import tests/installer.nix { inherit system; }).rebuildCD.test);
|
tests.installer.rebuildCD = forAllSystems (system: (import tests/installer.nix { inherit system; }).rebuildCD.test);
|
||||||
tests.installer.separateBoot = forAllSystems (system: (import tests/installer.nix { inherit system; }).separateBoot.test);
|
tests.installer.separateBoot = forAllSystems (system: (import tests/installer.nix { inherit system; }).separateBoot.test);
|
||||||
tests.installer.simple = forAllSystems (system: (import tests/installer.nix { inherit system; }).simple.test);
|
tests.installer.simple = forAllSystems (system: (import tests/installer.nix { inherit system; }).simple.test);
|
||||||
|
tests.installer.simpleLabels = forAllSystems (system: (import tests/installer.nix { inherit system; }).simpleLabels.test);
|
||||||
|
tests.installer.simpleProvided = forAllSystems (system: (import tests/installer.nix { inherit system; }).simpleProvided.test);
|
||||||
|
tests.installer.btrfsSimple = forAllSystems (system: (import tests/installer.nix { inherit system; }).btrfsSimple.test);
|
||||||
|
tests.installer.btrfsSubvols = forAllSystems (system: (import tests/installer.nix { inherit system; }).btrfsSubvols.test);
|
||||||
tests.influxdb = callTest tests/influxdb.nix {};
|
tests.influxdb = callTest tests/influxdb.nix {};
|
||||||
tests.ipv6 = callTest tests/ipv6.nix {};
|
tests.ipv6 = callTest tests/ipv6.nix {};
|
||||||
tests.jenkins = callTest tests/jenkins.nix {};
|
tests.jenkins = callTest tests/jenkins.nix {};
|
||||||
|
@ -397,7 +397,7 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Test using labels to identify volumes in grub
|
# Test using labels to identify volumes in grub
|
||||||
simpleLabels = makeInstallerTest {
|
simpleLabels = makeInstallerTest "simpleLabels" {
|
||||||
createPartitions = ''
|
createPartitions = ''
|
||||||
$machine->succeed(
|
$machine->succeed(
|
||||||
"sgdisk -Z /dev/vda",
|
"sgdisk -Z /dev/vda",
|
||||||
@ -413,7 +413,7 @@ in {
|
|||||||
|
|
||||||
# Test using the provided disk name within grub
|
# Test using the provided disk name within grub
|
||||||
# TODO: Fix udev so the symlinks are unneeded in /dev/disks
|
# TODO: Fix udev so the symlinks are unneeded in /dev/disks
|
||||||
simpleProvided = makeInstallerTest {
|
simpleProvided = makeInstallerTest "simpleProvided" {
|
||||||
createPartitions = ''
|
createPartitions = ''
|
||||||
my $UUID = "\$(blkid -s UUID -o value /dev/vda2)";
|
my $UUID = "\$(blkid -s UUID -o value /dev/vda2)";
|
||||||
$machine->succeed(
|
$machine->succeed(
|
||||||
@ -436,7 +436,7 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Simple btrfs grub testing
|
# Simple btrfs grub testing
|
||||||
btrfsSimple = makeInstallerTest {
|
btrfsSimple = makeInstallerTest "btrfsSimple" {
|
||||||
createPartitions = ''
|
createPartitions = ''
|
||||||
$machine->succeed(
|
$machine->succeed(
|
||||||
"sgdisk -Z /dev/vda",
|
"sgdisk -Z /dev/vda",
|
||||||
@ -450,7 +450,7 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Test to see if we can detect /boot and /nix on subvolumes
|
# Test to see if we can detect /boot and /nix on subvolumes
|
||||||
btrfsSubvols = makeInstallerTest {
|
btrfsSubvols = makeInstallerTest "btrfsSubvols" {
|
||||||
createPartitions = ''
|
createPartitions = ''
|
||||||
$machine->succeed(
|
$machine->succeed(
|
||||||
"sgdisk -Z /dev/vda",
|
"sgdisk -Z /dev/vda",
|
||||||
|
Loading…
Reference in New Issue
Block a user