aboutsummaryrefslogtreecommitdiff
path: root/tests/dependencies.nix.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2009-03-17 16:33:48 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2009-03-17 16:33:48 +0000
commit2d5114452d8a8f73c858f9beb6bfaafe35e7bf9a (patch)
tree676ad5958bce42d91d09518cf44c61a6414ac0e2 /tests/dependencies.nix.in
parent33ecb4299107da91f5d61131ead37afabe496649 (diff)
* Regression test for the `exportReferencesGraph'
derivation attribute.
Diffstat (limited to 'tests/dependencies.nix.in')
-rw-r--r--tests/dependencies.nix.in29
1 files changed, 0 insertions, 29 deletions
diff --git a/tests/dependencies.nix.in b/tests/dependencies.nix.in
deleted file mode 100644
index c33c6a8d9..000000000
--- a/tests/dependencies.nix.in
+++ /dev/null
@@ -1,29 +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 = "dependencies";
- system = "@system@";
- builder = "@shell@";
- args = ["-e" "-x" (./dependencies.builder0.sh + "/FOOBAR/../.")];
- PATH = "@testPath@";
- input1 = input1 + "/.";
- inherit input2;
- };
-
-} \ No newline at end of file