summary refs log tree commit diff
path: root/nixos/tests/installer.nix
diff options
context:
space:
mode:
authorLuca Bruno <luca.bruno@immobiliare.it>2014-08-29 11:48:00 +0200
committerLuca Bruno <luca.bruno@immobiliare.it>2014-08-29 11:49:36 +0200
commit01f0b1cf1a0d0fc043559a3faa38b1ca51423348 (patch)
treed14a933dbff0b2620b0a1571fe54abc80a2a2fb8 /nixos/tests/installer.nix
parenta34a0dfdc58f05d637bcec951dcfd9d02e3fcc73 (diff)
downloadnixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.tar
nixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.tar.gz
nixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.tar.bz2
nixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.tar.lz
nixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.tar.xz
nixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.tar.zst
nixpkgs-01f0b1cf1a0d0fc043559a3faa38b1ca51423348.zip
Fix evaluation of nixos tested
Diffstat (limited to 'nixos/tests/installer.nix')
-rw-r--r--nixos/tests/installer.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index ef11fcb1001..154f3323d29 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -397,7 +397,7 @@ in {
     };
 
   # Test using labels to identify volumes in grub
-  simpleLabels = makeInstallerTest {
+  simpleLabels = makeInstallerTest "simpleLabels" {
     createPartitions = ''
       $machine->succeed(
         "sgdisk -Z /dev/vda",
@@ -413,7 +413,7 @@ in {
 
   # Test using the provided disk name within grub
   # TODO: Fix udev so the symlinks are unneeded in /dev/disks
-  simpleProvided = makeInstallerTest {
+  simpleProvided = makeInstallerTest "simpleProvided" {
     createPartitions = ''
       my $UUID = "\$(blkid -s UUID -o value /dev/vda2)";
       $machine->succeed(
@@ -436,7 +436,7 @@ in {
   };
 
   # Simple btrfs grub testing
-  btrfsSimple = makeInstallerTest {
+  btrfsSimple = makeInstallerTest "btrfsSimple" {
     createPartitions = ''
       $machine->succeed(
         "sgdisk -Z /dev/vda",
@@ -450,7 +450,7 @@ in {
   };
 
   # Test to see if we can detect /boot and /nix on subvolumes
-  btrfsSubvols = makeInstallerTest {
+  btrfsSubvols = makeInstallerTest "btrfsSubvols" {
     createPartitions = ''
       $machine->succeed(
         "sgdisk -Z /dev/vda",