nix-gh/tests/gc.sh

41 lines
1016 B
Bash
Raw Permalink Normal View History

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