2005-02-09 13:57:13 +01:00
|
|
|
drvPath=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)
|
|
|
|
outPath=$($TOP/src/nix-store/nix-store -rvv "$drvPath")
|
2005-01-27 18:48:50 +01:00
|
|
|
|
|
|
|
# Set a GC root.
|
2005-02-01 18:50:48 +01:00
|
|
|
ln -s $outPath "$NIX_STATE_DIR"/gcroots/foo
|
2005-01-27 18:48:50 +01:00
|
|
|
|
|
|
|
$NIX_BIN_DIR/nix-collect-garbage
|
|
|
|
|
|
|
|
# Check that the root and its dependencies haven't been deleted.
|
|
|
|
cat $outPath/foobar
|
|
|
|
cat $outPath/input-2/bar
|
|
|
|
|
|
|
|
# Check that the derivation has been GC'd.
|
2005-02-09 13:57:13 +01:00
|
|
|
if cat $drvPath > /dev/null; then false; fi
|