* Improve the test.

This commit is contained in:
Eelco Dolstra 2009-03-18 16:36:13 +00:00
parent 9485ec31ea
commit e530e0a350
1 changed files with 6 additions and 2 deletions

View File

@ -4,23 +4,27 @@ clearStore
clearProfiles clearProfiles
checkRef() { 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. # Test the export of the runtime dependency graph.
outPath=$($nixbuild ./export-graph.nix -A runtimeGraph) 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 checkRef input-2
for i in $(cat $outPath); do checkRef $i; done for i in $(cat $outPath); do checkRef $i; done
# Test the export of the build-time dependency graph. # Test the export of the build-time dependency graph.
$nixstore --gc # should force rebuild of input-1
outPath=$($nixbuild ./export-graph.nix -A buildGraph) outPath=$($nixbuild ./export-graph.nix -A buildGraph)
checkRef input-1 checkRef input-1
checkRef input-1.drv
checkRef input-2 checkRef input-2
checkRef input-2.drv
for i in $(cat $outPath); do checkRef $i; done for i in $(cat $outPath); do checkRef $i; done