diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-14T09·26+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-14T09·26+0000 |
commit | c03b729319997b4e38c3f586d7c76352228b22e7 (patch) | |
tree | 90b7d1288117975295b7d6f990c5f9e6698775a5 /tests/gc-concurrent.builder.sh | |
parent | 5664b6d7ba28453ccdd6d1c07a707f98608500ff (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.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" |