1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/tests/functional/gc-runtime.sh

43 lines
766 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2006-07-21 08:46:54 -04:00
source common.sh
case $system in
*linux*)
;;
*)
skipTest "Not running Linux";
2006-07-21 08:46:54 -04:00
esac
set -m # enable job control, needed for kill
TODO_NixOS
2006-07-21 08:46:54 -04:00
profiles="$NIX_STATE_DIR"/profiles
rm -rf "$profiles"
2006-07-21 08:46:54 -04:00
nix-env -p "$profiles/test" -f ./gc-runtime.nix -i gc-runtime
2006-07-21 08:46:54 -04:00
outPath=$(nix-env -p "$profiles/test" -q --no-name --out-path gc-runtime)
echo "$outPath"
2006-07-21 08:46:54 -04:00
echo "backgrounding program..."
"$profiles"/test/program &
2006-09-01 08:02:39 -04:00
sleep 2 # hack - wait for the program to get started
2006-07-21 08:46:54 -04:00
child=$!
echo PID=$child
nix-env -p "$profiles/test" -e gc-runtime
nix-env -p "$profiles/test" --delete-generations old
2006-07-21 08:46:54 -04:00
nix-store --gc
2006-07-21 08:46:54 -04:00
kill -- -$child
if ! test -e "$outPath"; then
2006-07-21 08:46:54 -04:00
echo "running program was garbage collected!"
exit 1
fi
exit 0