1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

* Increase the sleep periods a bit to make the test less likely to

fail on slow machines.  Of course it would be better if this test
  wasn't timing dependent...
This commit is contained in:
Eelco Dolstra 2008-08-14 09:26:30 +00:00
parent 5664b6d7ba
commit c03b729319
4 changed files with 17 additions and 16 deletions

View file

@ -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"