Fix evaluation of the VM tests

This commit is contained in:
Eelco Dolstra 2013-03-25 21:59:11 +01:00
parent cc63db1dd5
commit 239841787b

View file

@ -192,11 +192,11 @@ let
# System tests. # System tests.
tests.remote_builds = (import ./tests/remote-builds.nix rec { tests.remote_builds = (import ./tests/remote-builds.nix rec {
nix = build { inherit system; }; system = "x86_64-linux"; nix = build.x86_64-linux; system = "x86_64-linux";
}).test; }).test;
tests.nix_copy_closure = (import ./tests/nix-copy-closure.nix rec { tests.nix_copy_closure = (import ./tests/nix-copy-closure.nix rec {
nix = build { inherit system; }; system = "x86_64-linux"; nix = build.x86_64-linux; system = "x86_64-linux";
}).test; }).test;
}; };