3
0
Fork 0
forked from mirrors/nixpkgs

Fix test evaluation

This commit is contained in:
Eelco Dolstra 2013-10-16 12:47:11 +02:00
parent 756ca94e0c
commit b3debdc046
2 changed files with 1 additions and 3 deletions

View file

@ -224,7 +224,4 @@ in {
mapAttrsRecursiveCond (x: !x ? test) (n: v: listToAttrs [(nameValuePair system v.test)])
(import ./tests { inherit nixpkgs system; });
in fold recursiveUpdate {} (map testsFor systems);
run-in-machine-tests = pkgs.lib.genAttrs systems (system: import ./tests/run-in-machine.nix { inherit nixpkgs system; });
}

View file

@ -34,4 +34,5 @@ with import ../lib/testing.nix { inherit system minimal; };
tomcat = makeTest (import ./tomcat.nix);
#trac = makeTest (import ./trac.nix);
xfce = makeTest (import ./xfce.nix);
runInMachine.test = import ./run-in-machine.nix { inherit system; };
}