about summary refs log tree commit diff
path: root/tests/gc-concurrent.builder.sh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-08-14T09·26+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-08-14T09·26+0000
commitc03b729319997b4e38c3f586d7c76352228b22e7 (patch)
tree90b7d1288117975295b7d6f990c5f9e6698775a5 /tests/gc-concurrent.builder.sh
parent5664b6d7ba28453ccdd6d1c07a707f98608500ff (diff)
* 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...

Diffstat (limited to 'tests/gc-concurrent.builder.sh')
-rw-r--r--tests/gc-concurrent.builder.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/gc-concurrent.builder.sh b/tests/gc-concurrent.builder.sh
index 6b2177ddff..0cd67df3ae 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"