mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
19 lines
342 B
Bash
Executable File
19 lines
342 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source common.sh
|
|
|
|
clearStore
|
|
|
|
outPath=$(nix-build --no-out-link readfile-context.nix)
|
|
|
|
# Set a GC root.
|
|
ln -s $outPath "$NIX_STATE_DIR/gcroots/foo"
|
|
|
|
# Check that file exists.
|
|
[ "$(cat $(cat $outPath))" = "Hello World!" ]
|
|
|
|
nix-collect-garbage
|
|
|
|
# Check that file still exists.
|
|
[ "$(cat $(cat $outPath))" = "Hello World!" ]
|