immutable: make the test of large files more likely to work by requesting to allocate space for only one huge share, not three

This commit is contained in:
Zooko O'Whielacronx 2008-12-31 15:59:42 -07:00
parent b0b9e8c1da
commit 63efa1665b

View File

@ -257,9 +257,9 @@ class Server(unittest.TestCase):
def test_large_share(self):
ss = self.create("test_large_share")
already,writers = self.allocate(ss, "allocate", [0,1,2], 2**32+2)
already,writers = self.allocate(ss, "allocate", [0], 2**32+2)
self.failUnlessEqual(already, set())
self.failUnlessEqual(set(writers.keys()), set([0,1,2]))
self.failUnlessEqual(set(writers.keys()), set([0]))
shnum, bucket = writers.items()[0]
# This test is going to hammer your filesystem if it doesn't make a sparse file for this. :-(