diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-07-21T13·21+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-07-21T13·21+0000 |
commit | 9c3099d3286b7bc8582b1685ba1917db409cac0c (patch) | |
tree | 40c3bc18f1408ef70e1e5dd446460bab762c831e /tests/gc-concurrent.nix.in | |
parent | 7adaa6d4466063893c9ac6b5b7d71c423be34b69 (diff) |
* Purify `make check'.
Diffstat (limited to 'tests/gc-concurrent.nix.in')
-rw-r--r-- | tests/gc-concurrent.nix.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/gc-concurrent.nix.in b/tests/gc-concurrent.nix.in index 0d62849bc52f..cf9f673137da 100644 --- a/tests/gc-concurrent.nix.in +++ b/tests/gc-concurrent.nix.in @@ -5,6 +5,7 @@ let { system = "@system@"; builder = "@shell@"; args = ["-e" "-x" ./dependencies.builder1.sh]; + PATH = "@testPath@"; }; input2 = derivation { @@ -12,6 +13,7 @@ let { system = "@system@"; builder = "@shell@"; args = ["-e" "-x" ./dependencies.builder2.sh]; + PATH = "@testPath@"; }; body = derivation { @@ -19,6 +21,7 @@ let { system = "@system@"; builder = "@shell@"; args = ["-e" "-x" ./gc-concurrent.builder.sh]; + PATH = "@testPath@"; inherit input1 input2; }; |