2009-03-17 17:33:48 +01:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
clearProfiles
|
|
|
|
|
2009-03-17 18:38:32 +01:00
|
|
|
checkRef() {
|
2012-09-12 01:14:15 +02:00
|
|
|
nix-store -q --references $TEST_ROOT/result | grep -q "$1" || fail "missing reference $1"
|
2009-03-17 18:38:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Test the export of the runtime dependency graph.
|
|
|
|
|
2012-09-12 01:14:15 +02:00
|
|
|
outPath=$(nix-build ./export-graph.nix -A runtimeGraph -o $TEST_ROOT/result)
|
2009-03-17 17:33:48 +01:00
|
|
|
|
2012-09-12 01:14:15 +02:00
|
|
|
test $(nix-store -q --references $TEST_ROOT/result | wc -l) = 2 || fail "bad nr of references"
|
2009-03-17 18:38:32 +01: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 23:32:34 +02:00
|
|
|
nix-store --gc # should force rebuild of input-1
|
2009-03-18 17:36:13 +01:00
|
|
|
|
2012-09-12 01:14:15 +02:00
|
|
|
outPath=$(nix-build ./export-graph.nix -A buildGraph -o $TEST_ROOT/result)
|
2009-03-17 18:38:32 +01:00
|
|
|
|
|
|
|
checkRef input-1
|
2009-03-18 17:36:13 +01:00
|
|
|
checkRef input-1.drv
|
2009-03-17 18:38:32 +01:00
|
|
|
checkRef input-2
|
2009-03-18 17:36:13 +01:00
|
|
|
checkRef input-2.drv
|
2009-03-17 18:38:32 +01:00
|
|
|
|
|
|
|
for i in $(cat $outPath); do checkRef $i; done
|