]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
tests: bump up timeouts so that the tests can finish before timeout on Francois's...
authorZooko O'Whielacronx <zooko@zooko.com>
Mon, 8 Jun 2009 22:55:57 +0000 (15:55 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Mon, 8 Jun 2009 22:55:57 +0000 (15:55 -0700)
src/allmydata/test/test_system.py
src/allmydata/test/test_upload.py
src/allmydata/test/test_util.py
src/allmydata/test/test_web.py

index 8c8f7991b5eedadf84b53057d01e70e933e71c02..d85344c786e757d110c35ad9a18df8aeae189143 100644 (file)
@@ -63,7 +63,7 @@ class GrabEverythingConsumer:
         pass
 
 class SystemTest(SystemTestMixin, unittest.TestCase):
-    timeout = 240 # It takes longer than 120 seconds on Francois's arm box.
+    timeout = 480 # It takes longer than 240 seconds on Francois's arm box.
 
     def test_connections(self):
         self.basedir = "system/SystemTest/test_connections"
index 4d0f764f835ffa7d2096ae4466b7baed776e04a7..bea4ebdbc7ba16c7aca39594b2d0b55b0412a0d3 100644 (file)
@@ -22,6 +22,8 @@ MiB = 1024*1024
 def extract_uri(results):
     return results.uri
 
+timeout = 240 # Most of these take longer than 120 seconds on Francois's arm box.
+
 class Uploadable(unittest.TestCase):
     def shouldEqual(self, data, expected):
         self.failUnless(isinstance(data, list))
index 2ae2667e77cebfc19883070f61010d7e35313f5a..68aca072cc953a5c2b3070676d3e5bc0097c56db 100644 (file)
@@ -689,6 +689,8 @@ class Abbreviate(unittest.TestCase):
         self.failUnless("12 cubits" in str(e))
 
 class Limiter(unittest.TestCase):
+    timeout = 240 # This takes longer than 120 seconds on Francois's arm box.
+
     def job(self, i, foo):
         self.calls.append( (i, foo) )
         self.simultaneous += 1
index 2cccb27dc9108a499e3c493d0aa3c1ef3bdc6177..60e31b309049c679965e2aa1550e51ce9d74bfba 100644 (file)
@@ -29,6 +29,8 @@ from allmydata.test.common_web import HTTPClientGETFactory, \
 # create a fake uploader/downloader, and a couple of fake dirnodes, then
 # create a webserver that works against them
 
+timeout = 240 # Most of these take longer than 120 seconds on Francois's arm box.
+
 class FakeIntroducerClient:
     def get_all_connectors(self):
         return {}