diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-25T16·43+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-25T16·43+0000 |
commit | 7024a1ef076cedf4596c9f4b107e85d315242cea (patch) | |
tree | 70534f32c233fc1d6b1ef27441020ff6d12805ad /tests/locking.nix | |
parent | 8146a0c7313b95b4cc24776cc609efc846b0a38e (diff) |
* Removed the locking.sh test; it's redundant because of the extended
parallel.sh test. Also, don't call multiple nix-builds in parallel, since they can race creating .nix-build-tmp-derivation.
Diffstat (limited to 'tests/locking.nix')
-rw-r--r-- | tests/locking.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/locking.nix b/tests/locking.nix deleted file mode 100644 index a0407685b319..000000000000 --- a/tests/locking.nix +++ /dev/null @@ -1,17 +0,0 @@ -with import ./config.nix; - -let - - mkDrv = text: inputs: mkDerivation { - name = "locking"; - builder = ./locking.builder.sh; - inherit text inputs; - }; - - a = mkDrv "a" []; - b = mkDrv "b" [a]; - c = mkDrv "c" [a b]; - d = mkDrv "d" [a]; - e = mkDrv "e" [c d]; - -in e |