1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 14:21:48 +02:00

* Make this test a bit more robust. It's still timing dependent

though.
This commit is contained in:
Eelco Dolstra 2009-03-23 15:16:36 +00:00
parent 3a87163b24
commit 7aedcf9460
3 changed files with 14 additions and 10 deletions

View file

@ -1,3 +1,5 @@
{sleepTime ? 3}:
with import ./config.nix;
let
@ -5,7 +7,7 @@ let
mkDrv = text: inputs: mkDerivation {
name = "parallel";
builder = ./parallel.builder.sh;
inherit text inputs shared;
inherit text inputs shared sleepTime;
};
a = mkDrv "a" [];