about summary refs log tree commit diff
path: root/tests/gc-concurrent.nix.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gc-concurrent.nix.in')
-rw-r--r--tests/gc-concurrent.nix.in3
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;
   };