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