2009-03-17 16:33:48 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
clearProfiles
|
|
|
|
|
2009-03-17 17:38:32 +00:00
|
|
|
checkRef() {
|
2009-03-18 16:36:13 +00:00
|
|
|
$nixstore -q --references ./result | grep -q "$1" || fail "missing reference $1"
|
2009-03-17 17:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Test the export of the runtime dependency graph.
|
|
|
|
|
|
|
|
outPath=$($nixbuild ./export-graph.nix -A runtimeGraph)
|
2009-03-17 16:33:48 +00:00
|
|
|
|
2009-03-18 16:36:13 +00:00
|
|
|
test $($nixstore -q --references ./result | wc -l) = 2 || fail "bad nr of references"
|
2009-03-17 17:38:32 +00:00
|
|
|
|
|
|
|
checkRef input-2
|
|
|
|
for i in $(cat $outPath); do checkRef $i; done
|
|
|
|
|
|
|
|
# Test the export of the build-time dependency graph.
|
|
|
|
|
2009-03-18 16:36:13 +00:00
|
|
|
$nixstore --gc # should force rebuild of input-1
|
|
|
|
|
2009-03-17 17:38:32 +00:00
|
|
|
outPath=$($nixbuild ./export-graph.nix -A buildGraph)
|
|
|
|
|
|
|
|
checkRef input-1
|
2009-03-18 16:36:13 +00:00
|
|
|
checkRef input-1.drv
|
2009-03-17 17:38:32 +00:00
|
|
|
checkRef input-2
|
2009-03-18 16:36:13 +00:00
|
|
|
checkRef input-2.drv
|
2009-03-17 17:38:32 +00:00
|
|
|
|
|
|
|
for i in $(cat $outPath); do checkRef $i; done
|