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:
parent
8a3eef22e3
commit
e5c16c9582
4 changed files with 25 additions and 20 deletions
14
tests/gc.sh
Normal file
14
tests/gc.sh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue