diff options
Diffstat (limited to 'tests/gc-concurrent.builder.sh')
-rw-r--r-- | tests/gc-concurrent.builder.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/gc-concurrent.builder.sh b/tests/gc-concurrent.builder.sh index 6b2177ddff2e..0cd67df3aeda 100644 --- a/tests/gc-concurrent.builder.sh +++ b/tests/gc-concurrent.builder.sh @@ -1,8 +1,11 @@ mkdir $out echo $(cat $input1/foo)$(cat $input2/bar) > $out/foobar -sleep 5 -mkdir $out || true +sleep 10 + +# $out should not have been GC'ed while we were sleeping, but just in +# case... +mkdir -p $out # Check that the GC hasn't deleted the lock on our output. test -e "$out.lock" |