2005-02-09 12:57:13 +00:00
|
|
|
drvPath=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
echo "derivation is $drvPath"
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
|
2004-05-04 13:22:33 +00:00
|
|
|
|
|
|
|
echo "output path is $outPath"
|
|
|
|
|
|
|
|
text=$(cat "$outPath"/foobar)
|
|
|
|
if test "$text" != "FOOBAR"; then exit 1; fi
|
|
|
|
|
2005-02-09 12:57:13 +00:00
|
|
|
deps=$($TOP/src/nix-store/nix-store -quR "$drvPath")
|
2004-05-04 13:22:33 +00:00
|
|
|
|
2005-01-25 10:55:33 +00:00
|
|
|
echo "output closure contains $deps"
|
2004-05-04 13:22:33 +00:00
|
|
|
|
|
|
|
# The output path should be in the closure.
|
|
|
|
echo "$deps" | grep -q "$outPath"
|
|
|
|
|
|
|
|
# Input-1 is not retained.
|
|
|
|
if echo "$deps" | grep -q "dependencies-input-1"; then exit 1; fi
|
|
|
|
|
|
|
|
# Input-2 is retained.
|
2005-01-25 11:18:03 +00:00
|
|
|
input2OutPath=$(echo "$deps" | grep "dependencies-input-2")
|
|
|
|
|
2005-12-13 21:04:48 +00:00
|
|
|
# The referrers closure of input-2 should include outPath.
|
|
|
|
$TOP/src/nix-store/nix-store -q --referrers-closure "$input2OutPath" | grep "$outPath"
|
2005-02-09 12:57:13 +00:00
|
|
|
|
|
|
|
# Check that the derivers are set properly.
|
|
|
|
test $($TOP/src/nix-store/nix-store -q --deriver "$outPath") = "$drvPath"
|
|
|
|
$TOP/src/nix-store/nix-store -q --deriver "$input2OutPath" | grep -q -- "-input-2.drv"
|