summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-07 13:19:38 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-07 13:19:38 +0000
commita776afb0852961fed4da081a494f4a3f878f2daa (patch)
treedf4af2c58c5cd62219043bbc6ae87b462ec9ef48 /release.nix
parentfdc63c54e42f317865d3d7b17dc16325a97821fc (diff)
downloadnixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.tar
nixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.tar.gz
nixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.tar.bz2
nixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.tar.lz
nixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.tar.xz
nixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.tar.zst
nixpkgs-a776afb0852961fed4da081a494f4a3f878f2daa.zip
* Parameterize the installer test to support different partitioning
  schemes.
* Added a test for installing NixOS with a separate /boot partition.

svn path=/nixos/trunk/; revision=19283
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix21
1 files changed, 6 insertions, 15 deletions
diff --git a/release.nix b/release.nix
index 0cfa377a5df..e33031e8041 100644
--- a/release.nix
+++ b/release.nix
@@ -111,6 +111,10 @@ let
     minimal_install_archive = {system ? "i686-linux"}: (iso_minimal {inherit system;})
       .config.system.build.minimalInstallArchive;
 
+    # the archive installer can't be tested without chroot which requires being root
+    # options: run in kvm or uml ?
+    # TODO
+
     tests = 
       { services ? ../services }:
       let
@@ -120,27 +124,14 @@ let
         };
       in {
         firefox = t.firefox.test;
-        installer = t.installer.test;
+        installer.simple = t.installer.simple.test;
+        installer.separateBoot = t.installer.separateBoot.test;
         kde4 = t.kde4.test;
         quake3 = t.quake3.test;
         subversion = t.subversion.report;
         trac = t.trac.test;
       };
 
-    /*
-    ### tests about installing NixOS
-
-    # installs NixOs in a qemu_kvm instance using a tweaked iso.
-    tests.nixosInstallation = 
-      (import ./tests/test-nixos-install-from-cd/test.nix {
-        inherit nixpkgs;
-      }).test;
-    */
-
-    # the archive installer can't be tested without chroot which requires being root
-    # options: run in kvm or uml ?
-    # TODO
-
   };