2006-03-01 13:15:33 +01:00
|
|
|
source common.sh
|
|
|
|
|
2009-03-27 23:40:22 +01:00
|
|
|
clearStore
|
2008-08-14 11:26:30 +02:00
|
|
|
|
2011-10-10 23:32:34 +02:00
|
|
|
drvPath1=$(nix-instantiate gc-concurrent.nix -A test1)
|
|
|
|
outPath1=$(nix-store -q $drvPath1)
|
2005-01-31 23:01:55 +01:00
|
|
|
|
2011-10-10 23:32:34 +02:00
|
|
|
drvPath2=$(nix-instantiate gc-concurrent.nix -A test2)
|
|
|
|
outPath2=$(nix-store -q $drvPath2)
|
2005-01-28 21:36:46 +01:00
|
|
|
|
2011-10-10 23:32:34 +02:00
|
|
|
drvPath3=$(nix-instantiate simple.nix)
|
|
|
|
outPath3=$(nix-store -r $drvPath3)
|
2008-12-12 18:03:18 +01:00
|
|
|
|
2014-08-21 21:50:19 +02:00
|
|
|
(! test -e $outPath3.lock)
|
2008-12-12 18:03:18 +01:00
|
|
|
touch $outPath3.lock
|
|
|
|
|
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/foo*
|
2006-03-01 14:25:08 +01:00
|
|
|
ln -s $drvPath2 "$NIX_STATE_DIR"/gcroots/foo
|
2008-12-12 18:03:18 +01:00
|
|
|
ln -s $outPath3 "$NIX_STATE_DIR"/gcroots/foo2
|
2005-01-31 23:23:49 +01:00
|
|
|
|
2005-01-31 23:01:55 +01:00
|
|
|
# Start build #1 in the background. It starts immediately.
|
2011-10-10 23:32:34 +02:00
|
|
|
nix-store -rvv "$drvPath1" &
|
2005-01-31 23:01:55 +01:00
|
|
|
pid1=$!
|
2005-01-28 21:36:46 +01:00
|
|
|
|
2009-03-27 23:40:22 +01:00
|
|
|
# Start build #2 in the background after 10 seconds.
|
2011-10-10 23:32:34 +02:00
|
|
|
(sleep 10 && nix-store -rvv "$drvPath2") &
|
2005-01-31 23:01:55 +01:00
|
|
|
pid2=$!
|
2005-01-28 21:36:46 +01:00
|
|
|
|
2008-08-14 11:26:30 +02:00
|
|
|
# Run the garbage collector while the build is running.
|
2009-03-27 23:40:22 +01:00
|
|
|
sleep 6
|
2011-10-10 23:32:34 +02:00
|
|
|
nix-collect-garbage
|
2005-01-31 23:01:55 +01:00
|
|
|
|
|
|
|
# Wait for build #1/#2 to finish.
|
|
|
|
echo waiting for pid $pid1 to finish...
|
|
|
|
wait $pid1
|
|
|
|
echo waiting for pid $pid2 to finish...
|
|
|
|
wait $pid2
|
2005-01-28 21:36:46 +01:00
|
|
|
|
2005-01-31 23:01:55 +01:00
|
|
|
# Check that the root of build #1 and its dependencies haven't been
|
2008-08-14 11:26:30 +02:00
|
|
|
# deleted. The should not be deleted by the GC because they were
|
|
|
|
# being built during the GC.
|
2005-01-31 23:01:55 +01:00
|
|
|
cat $outPath1/foobar
|
|
|
|
cat $outPath1/input-2/bar
|
2005-01-28 21:36:46 +01:00
|
|
|
|
2008-08-14 11:26:30 +02:00
|
|
|
# Check that build #2 has succeeded. It should succeed because the
|
|
|
|
# derivation is a GC root.
|
2005-01-31 23:01:55 +01:00
|
|
|
cat $outPath2/foobar
|
2006-03-01 14:25:08 +01:00
|
|
|
|
2008-12-12 18:03:18 +01:00
|
|
|
rm -f "$NIX_STATE_DIR"/gcroots/foo*
|
|
|
|
|
|
|
|
# The collector should have deleted lock files for paths that have
|
|
|
|
# been built previously.
|
2014-08-21 21:50:19 +02:00
|
|
|
(! test -e $outPath3.lock)
|
2008-12-12 18:03:18 +01:00
|
|
|
|
|
|
|
# If we run the collector now, it should delete outPath1/2.
|
2011-10-10 23:32:34 +02:00
|
|
|
nix-collect-garbage
|
2014-08-21 21:50:19 +02:00
|
|
|
(! test -e $outPath1)
|
|
|
|
(! test -e $outPath2)
|