about summary refs log tree commit diff
path: root/tests/gc-concurrent2.nix.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2009-03-17T17·11+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2009-03-17T17·11+0000
commit51e7e32c3bf7c2fb5045b0655c2edc1fbf347455 (patch)
tree21337c26d0106fa92b5f82854f623640b24dc34e /tests/gc-concurrent2.nix.in
parent2d5114452d8a8f73c858f9beb6bfaafe35e7bf9a (diff)
* Refactoring: renamed *.nix.in to *.nix.
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 d331e9c82d9f..000000000000
--- 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