From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 2 May 2007 22:31:05 +0000 (-0700)
Subject: bump test timeout even higher
X-Git-Tag: allmydata-tahoe-0.2.0~2
X-Git-Url: https://git.rkrishnan.org/pf/index.php?a=commitdiff_plain;h=ff08abb67ee37686e4a9161be65547d8cc66e308;p=tahoe-lafs%2Ftahoe-lafs.git

bump test timeout even higher
It does indeed take longer than 2400 seconds to run test_upload_and_download on a virtual windows machine when the underlying real machine is heavily loaded down with filesystem analysis runs...
---

diff --git a/src/allmydata/test/test_system.py b/src/allmydata/test/test_system.py
index 4cfdc453..e692c771 100644
--- a/src/allmydata/test/test_system.py
+++ b/src/allmydata/test/test_system.py
@@ -204,7 +204,7 @@ class SystemTest(testutil.SignalMixin, unittest.TestCase):
             return d1
         d.addCallback(_download_nonexistent_uri)
         return d
-    test_upload_and_download.timeout = 2400
+    test_upload_and_download.timeout = 4800
 
     def flip_bit(self, good):
         return good[:-1] + chr(ord(good[-1]) ^ 0x01)