From e530e0a35041b3135b521f1b2dbc21fabfb00d47 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 18 Mar 2009 16:36:13 +0000 Subject: [PATCH] * Improve the test. --- tests/export-graph.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/export-graph.sh b/tests/export-graph.sh index 5cba57f996..607849a7c8 100644 --- a/tests/export-graph.sh +++ b/tests/export-graph.sh @@ -4,23 +4,27 @@ clearStore clearProfiles checkRef() { - nix-store -q --references ./result | grep -q "$1" || fail "missing reference $1" + $nixstore -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) -test $(nix-store -q --references ./result | wc -l) = 2 || fail "bad nr of references" +test $($nixstore -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 + outPath=$($nixbuild ./export-graph.nix -A buildGraph) checkRef input-1 +checkRef input-1.drv checkRef input-2 +checkRef input-2.drv for i in $(cat $outPath); do checkRef $i; done