2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2006-03-01 12:51:18 +00:00
|
|
|
drvPath=$($nixinstantiate dependencies.nix)
|
|
|
|
outPath=$($nixstore -rvv "$drvPath")
|
2005-01-27 17:48:50 +00:00
|
|
|
|
|
|
|
# Set a GC root.
|
2006-03-01 13:25:08 +00:00
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/foo
|
|
|
|
ln -sf $outPath "$NIX_STATE_DIR"/gcroots/foo
|
2005-01-27 17:48:50 +00:00
|
|
|
|
2006-03-01 14:00:27 +00:00
|
|
|
$nixstore --gc --print-roots | grep $outPath
|
|
|
|
$nixstore --gc --print-live | grep $outPath
|
|
|
|
$nixstore --gc --print-dead | grep $drvPath
|
|
|
|
if $nixstore --gc --print-dead | grep $outPath; then false; fi
|
|
|
|
|
2006-03-01 14:26:03 +00:00
|
|
|
$nixstore --gc --print-dead
|
|
|
|
|
|
|
|
inUse=$(readLink $outPath/input-2)
|
|
|
|
if $nixstore --delete $inUse; then false; fi
|
|
|
|
test -e $inUse
|
|
|
|
|
|
|
|
if $nixstore --delete $outPath; then false; fi
|
|
|
|
test -e $outPath
|
|
|
|
|
2005-01-27 17:48:50 +00: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.
|
2006-03-01 14:00:27 +00:00
|
|
|
if test -e $drvPath; then false; fi
|
2006-03-01 13:25:08 +00:00
|
|
|
|
|
|
|
rm "$NIX_STATE_DIR"/gcroots/foo
|
2006-03-01 14:00:27 +00:00
|
|
|
|
|
|
|
$NIX_BIN_DIR/nix-collect-garbage
|
|
|
|
|
|
|
|
# Check that the output has been GC'd.
|
|
|
|
if test -e $outPath/foobar; then false; fi
|