2009-03-17 16:33:48 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
clearProfiles
|
|
|
|
|
2009-03-17 17:38:32 +00:00
|
|
|
checkRef() {
|
2012-09-11 23:14:15 +00:00
|
|
|
nix-store -q --references $TEST_ROOT/result | grep -q "$1" || fail "missing reference $1"
|
2009-03-17 17:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Test the export of the runtime dependency graph.
|
|
|
|
|
2013-11-18 10:21:12 +00:00
|
|
|
outPath=$(nix-build ./export-graph.nix -A 'foo."bar.runtimeGraph"' -o $TEST_ROOT/result)
|
2009-03-17 16:33:48 +00:00
|
|
|
|
2012-09-11 23:14:15 +00:00
|
|
|
test $(nix-store -q --references $TEST_ROOT/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.
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store --gc # should force rebuild of input-1
|
2009-03-18 16:36:13 +00:00
|
|
|
|
2013-11-18 10:21:12 +00:00
|
|
|
outPath=$(nix-build ./export-graph.nix -A 'foo."bar.buildGraph"' -o $TEST_ROOT/result)
|
2009-03-17 17:38:32 +00:00
|
|
|
|
|
|
|
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
|