2022-01-18 15:54:53 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
|
|
|
|
cp ./dependencies.nix ./dependencies.builder0.sh ./config.nix $TEST_HOME
|
|
|
|
|
|
|
|
cd $TEST_HOME
|
|
|
|
|
|
|
|
nix-build ./dependencies.nix -A input0_drv -o dep
|
|
|
|
nix-build ./dependencies.nix -o toplevel
|
|
|
|
|
2022-01-19 13:15:45 +00:00
|
|
|
FAST_WHY_DEPENDS_OUTPUT=$(nix why-depends ./toplevel ./dep)
|
|
|
|
PRECISE_WHY_DEPENDS_OUTPUT=$(nix why-depends ./toplevel ./dep --precise)
|
|
|
|
|
|
|
|
# Both outputs should show that `input-2` is in the dependency chain
|
|
|
|
echo "$FAST_WHY_DEPENDS_OUTPUT" | grep -q input-2
|
|
|
|
echo "$PRECISE_WHY_DEPENDS_OUTPUT" | grep -q input-2
|
|
|
|
|
|
|
|
# But only the “precise” one should refere to `reference-to-input-2`
|
|
|
|
echo "$FAST_WHY_DEPENDS_OUTPUT" | (! grep -q reference-to-input-2)
|
|
|
|
echo "$PRECISE_WHY_DEPENDS_OUTPUT" | grep -q reference-to-input-2
|