aboutsummaryrefslogtreecommitdiff
path: root/tests/export-graph.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-10-10 21:32:34 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-10-10 21:32:34 +0000
commit8af7d766f0244d5b15d89ab2d2d66b0d63e8f576 (patch)
tree3346cb494de0bf35403d812efd8b757595cd44d6 /tests/export-graph.sh
parentcd6d02c366af43bccdd2ef345193e4fdeca78a13 (diff)
* Refactoring: remove unnecessary variables from the tests.
Diffstat (limited to 'tests/export-graph.sh')
-rw-r--r--tests/export-graph.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/export-graph.sh b/tests/export-graph.sh
index 607849a7c..7adbefd12 100644
--- a/tests/export-graph.sh
+++ b/tests/export-graph.sh
@@ -4,23 +4,23 @@ clearStore
clearProfiles
checkRef() {
- $nixstore -q --references ./result | grep -q "$1" || fail "missing reference $1"
+ nix-store -q --references ./result | grep -q "$1" || fail "missing reference $1"
}
# Test the export of the runtime dependency graph.
-outPath=$($nixbuild ./export-graph.nix -A runtimeGraph)
+outPath=$(nix-build ./export-graph.nix -A runtimeGraph)
-test $($nixstore -q --references ./result | wc -l) = 2 || fail "bad nr of references"
+test $(nix-store -q --references ./result | wc -l) = 2 || fail "bad nr of references"
checkRef input-2
for i in $(cat $outPath); do checkRef $i; done
# Test the export of the build-time dependency graph.
-$nixstore --gc # should force rebuild of input-1
+nix-store --gc # should force rebuild of input-1
-outPath=$($nixbuild ./export-graph.nix -A buildGraph)
+outPath=$(nix-build ./export-graph.nix -A buildGraph)
checkRef input-1
checkRef input-1.drv