aboutsummaryrefslogtreecommitdiff
path: root/tests/gc-non-blocking.sh
blob: 8b21c6f1c4ec5d7e81490ebe4483a3301f1b95df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Test whether the collector is non-blocking, i.e. a build can run in
# parallel with it.
source common.sh

needLocalStore "the GC test needs a synchronisation point"

clearStore

fifo=$TEST_ROOT/test.fifo
mkfifo "$fifo"

dummy=$(nix store add-path ./simple.nix)

running=$TEST_ROOT/running
touch $running

(_NIX_TEST_GC_SYNC=$fifo nix-store --gc -vvvvv; rm $running) &
pid=$!

sleep 2

outPath=$(nix-build -o "$TEST_ROOT/result" -E "
  with import ./config.nix;
  mkDerivation {
    name = \"non-blocking\";
    buildCommand = \"set -x; test -e $running; mkdir \$out; echo > $fifo\";
  }")

wait $pid

(! test -e $running)
(! test -e $dummy)
test -e $outPath