2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2021-10-14 11:28:22 +00:00
|
|
|
clearStore
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
drvPath=$(nix-instantiate dependencies.nix)
|
|
|
|
outPath=$(nix-store -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
|
|
|
|
2019-03-10 00:50:33 +00:00
|
|
|
[ "$(nix-store -q --roots $outPath)" = "$NIX_STATE_DIR/gcroots/foo -> $outPath" ]
|
2014-02-26 17:00:46 +00:00
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store --gc --print-roots | grep $outPath
|
|
|
|
nix-store --gc --print-live | grep $outPath
|
|
|
|
nix-store --gc --print-dead | grep $drvPath
|
2021-06-23 15:37:29 +00:00
|
|
|
if nix-store --gc --print-dead | grep -E $outPath$; then false; fi
|
2006-03-01 14:00:27 +00:00
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-store --gc --print-dead
|
2006-03-01 14:26:03 +00:00
|
|
|
|
2022-01-19 13:15:45 +00:00
|
|
|
inUse=$(readLink $outPath/reference-to-input-2)
|
2011-10-10 21:32:34 +00:00
|
|
|
if nix-store --delete $inUse; then false; fi
|
2006-03-01 14:26:03 +00:00
|
|
|
test -e $inUse
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
if nix-store --delete $outPath; then false; fi
|
2006-03-01 14:26:03 +00:00
|
|
|
test -e $outPath
|
|
|
|
|
2021-10-14 11:28:22 +00:00
|
|
|
for i in $NIX_STORE_DIR/*; do
|
2021-10-15 10:41:27 +00:00
|
|
|
if [[ $i =~ /trash ]]; then continue; fi # compat with old daemon
|
2021-10-14 11:28:22 +00:00
|
|
|
touch $i.lock
|
|
|
|
touch $i.chroot
|
|
|
|
done
|
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-collect-garbage
|
2005-01-27 17:48:50 +00:00
|
|
|
|
|
|
|
# Check that the root and its dependencies haven't been deleted.
|
|
|
|
cat $outPath/foobar
|
2022-01-19 13:15:45 +00:00
|
|
|
cat $outPath/reference-to-input-2/bar
|
2005-01-27 17:48:50 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
2011-10-10 21:32:34 +00:00
|
|
|
nix-collect-garbage
|
2006-03-01 14:00:27 +00:00
|
|
|
|
|
|
|
# Check that the output has been GC'd.
|
|
|
|
if test -e $outPath/foobar; then false; fi
|
2021-10-14 11:28:22 +00:00
|
|
|
|
|
|
|
# Check that the store is empty.
|
|
|
|
rmdir $NIX_STORE_DIR/.links
|
|
|
|
rmdir $NIX_STORE_DIR
|