2024-05-28 19:43:04 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2009-03-17 18:33:48 +02:00
|
|
|
source common.sh
|
|
|
|
|
2024-06-16 13:51:46 +03:00
|
|
|
TODO_NixOS
|
|
|
|
|
2009-03-17 18:33:48 +02:00
|
|
|
clearStore
|
|
|
|
clearProfiles
|
|
|
|
|
2009-03-17 19:38:32 +02:00
|
|
|
checkRef() {
|
2021-12-09 17:26:46 +02:00
|
|
|
nix-store -q --references $TEST_ROOT/result | grepQuiet "$1"'$' || fail "missing reference $1"
|
2009-03-17 19:38:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Test the export of the runtime dependency graph.
|
|
|
|
|
2013-11-18 12:21:12 +02:00
|
|
|
outPath=$(nix-build ./export-graph.nix -A 'foo."bar.runtimeGraph"' -o $TEST_ROOT/result)
|
2009-03-17 18:33:48 +02:00
|
|
|
|
2020-05-12 14:49:55 +03:00
|
|
|
test $(nix-store -q --references $TEST_ROOT/result | wc -l) = 3 || fail "bad nr of references"
|
2009-03-17 19:38:32 +02:00
|
|
|
|
|
|
|
checkRef input-2
|
|
|
|
for i in $(cat $outPath); do checkRef $i; done
|
|
|
|
|
|
|
|
# Test the export of the build-time dependency graph.
|
|
|
|
|
2011-10-11 00:32:34 +03:00
|
|
|
nix-store --gc # should force rebuild of input-1
|
2009-03-18 18:36:13 +02:00
|
|
|
|
2013-11-18 12:21:12 +02:00
|
|
|
outPath=$(nix-build ./export-graph.nix -A 'foo."bar.buildGraph"' -o $TEST_ROOT/result)
|
2009-03-17 19:38:32 +02:00
|
|
|
|
|
|
|
checkRef input-1
|
2009-03-18 18:36:13 +02:00
|
|
|
checkRef input-1.drv
|
2009-03-17 19:38:32 +02:00
|
|
|
checkRef input-2
|
2009-03-18 18:36:13 +02:00
|
|
|
checkRef input-2.drv
|
2009-03-17 19:38:32 +02:00
|
|
|
|
|
|
|
for i in $(cat $outPath); do checkRef $i; done
|