1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-10 04:43:53 +02:00

* Add missing substitutes files to dist.

* Add a garbage collector test.
This commit is contained in:
Eelco Dolstra 2005-01-27 17:48:50 +00:00
parent 8a3eef22e3
commit e5c16c9582
4 changed files with 25 additions and 20 deletions

14
tests/gc.sh Normal file
View file

@ -0,0 +1,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