about summary refs log tree commit diff
path: root/tests/gc-concurrent2.nix.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gc-concurrent2.nix.in')
-rw-r--r--tests/gc-concurrent2.nix.in28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/gc-concurrent2.nix.in b/tests/gc-concurrent2.nix.in
deleted file mode 100644
index d331e9c82d..0000000000
--- a/tests/gc-concurrent2.nix.in
+++ /dev/null
@@ -1,28 +0,0 @@
-let {
-
-  input1 = derivation {
-    name = "dependencies-input-1";
-    system = "@system@";
-    builder = "@shell@";
-    args = ["-e" "-x" ./dependencies.builder1.sh];
-    PATH = "@testPath@";
-  };
-
-  input2 = derivation {
-    name = "dependencies-input-2";
-    system = "@system@";
-    builder = "@shell@";
-    args = ["-e" "-x" ./dependencies.builder2.sh];
-    PATH = "@testPath@";
-  };
-
-  body = derivation {
-    name = "gc-concurrent2";
-    system = "@system@";
-    builder = "@shell@";
-    args = ["-e" "-x" ./gc-concurrent2.builder.sh];
-    PATH = "@testPath@";
-    inherit input1 input2;
-  };
-
-}
\ No newline at end of file