2006-03-01 14:49:12 +01:00
|
|
|
source common.sh
|
|
|
|
|
2009-03-18 14:15:55 +01:00
|
|
|
clearStore
|
2006-03-01 14:49:12 +01:00
|
|
|
|
2011-10-10 23:32:34 +02:00
|
|
|
(cd $TEST_ROOT && nix-build ../dependencies.nix)
|
2006-03-01 14:49:12 +01:00
|
|
|
test "$(cat $TEST_ROOT/result/foobar)" = FOOBAR
|
|
|
|
|
|
|
|
# The result should be retained by a GC.
|
2006-03-01 15:26:03 +01:00
|
|
|
echo A
|
|
|
|
target=$(readLink $TEST_ROOT/result)
|
|
|
|
echo B
|
2006-03-01 14:49:12 +01:00
|
|
|
echo target is $target
|
2011-10-10 23:32:34 +02:00
|
|
|
nix-store --gc
|
2006-03-01 14:49:12 +01:00
|
|
|
test -e $target/foobar
|
|
|
|
|
|
|
|
# But now it should be gone.
|
|
|
|
rm $TEST_ROOT/result
|
2011-10-10 23:32:34 +02:00
|
|
|
nix-store --gc
|
2006-03-01 14:49:12 +01:00
|
|
|
if test -e $target/foobar; then false; fi
|