unit tests: bump up a timeout which I encountered when running on a very slow machine

This commit is contained in:
Zooko O'Whielacronx 2007-11-29 14:47:35 -07:00
parent e8b4f025e2
commit 7b24eebd0a
1 changed files with 3 additions and 0 deletions

View File

@ -399,6 +399,9 @@ class SystemTest(testutil.SignalMixin, unittest.TestCase):
d.addCallback(_created_dirnode)
return d
# The default 120 second timeout went off when running it under valgrind
# on my old Windows laptop, so I'm bumping up the timeout.
test_mutable.timeout = 240
def flip_bit(self, good):
return good[:-1] + chr(ord(good[-1]) ^ 0x01)