1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/tests/functional/gc.sh

57 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
source common.sh
TODO_NixOS
clearStore
drvPath=$(nix-instantiate dependencies.nix)
outPath=$(nix-store -rvv "$drvPath")
# Set a GC root.
rm -f "$NIX_STATE_DIR/gcroots/foo"
ln -sf $outPath "$NIX_STATE_DIR/gcroots/foo"
2019-03-09 19:50:33 -05:00
[ "$(nix-store -q --roots $outPath)" = "$NIX_STATE_DIR/gcroots/foo -> $outPath" ]
2014-02-26 12:00:46 -05: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 -E $outPath$; then false; fi
2006-03-01 09:00:27 -05:00
nix-store --gc --print-dead
2006-03-01 09:26:03 -05:00
inUse=$(readLink $outPath/reference-to-input-2)
if nix-store --delete $inUse; then false; fi
2006-03-01 09:26:03 -05:00
test -e $inUse
if nix-store --delete $outPath; then false; fi
2006-03-01 09:26:03 -05:00
test -e $outPath
for i in $NIX_STORE_DIR/*; do
2021-10-15 06:41:27 -04:00
if [[ $i =~ /trash ]]; then continue; fi # compat with old daemon
touch $i.lock
touch $i.chroot
done
nix-collect-garbage
# Check that the root and its dependencies haven't been deleted.
cat $outPath/foobar
cat $outPath/reference-to-input-2/bar
# Check that the derivation has been GC'd.
2006-03-01 09:00:27 -05:00
if test -e $drvPath; then false; fi
2006-03-01 08:25:08 -05:00
rm "$NIX_STATE_DIR/gcroots/foo"
2006-03-01 09:00:27 -05:00
nix-collect-garbage
2006-03-01 09:00:27 -05:00
# Check that the output has been GC'd.
if test -e $outPath/foobar; then false; fi
# Check that the store is empty.
rmdir $NIX_STORE_DIR/.links
rmdir $NIX_STORE_DIR