about summary refs log blame commit diff
path: root/tests/gc.sh
blob: 9aeda43e7101b68239dde8cc907598bff19ed197 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                      
storeExpr=$($TOP/src/nix-instantiate/nix-instantiate dependencies.nix)
outPath=$($TOP/src/nix-store/nix-store -rvv "$storeExpr")

# Set a GC root.
ln -s $outPath "$NIX_LOCALSTATE_DIR"/nix/gcroots/foo

$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.
if cat $storeExpr > /dev/null; then false; fi