From: david-sarah Date: Thu, 5 Aug 2010 02:26:12 +0000 (-0700) Subject: test_storage.py: change skip note for test_large_share to say that Windows doesn... X-Git-Tag: allmydata-tahoe-1.8.0b2~10 X-Git-Url: https://git.rkrishnan.org/tahoe_css?a=commitdiff_plain;h=cd8d41584ea4af9e41367b05e87425be86007677;p=tahoe-lafs%2Ftahoe-lafs.git test_storage.py: change skip note for test_large_share to say that Windows doesn't support sparse files. refs #569 --- diff --git a/misc/coding_tools/check-umids.py b/misc/coding_tools/check-umids.py old mode 100755 new mode 100644 diff --git a/src/allmydata/test/test_storage.py b/src/allmydata/test/test_storage.py index 90a40483..c302bd1e 100644 --- a/src/allmydata/test/test_storage.py +++ b/src/allmydata/test/test_storage.py @@ -279,7 +279,7 @@ class Server(unittest.TestCase): readers = ss.remote_get_buckets("allocate") reader = readers[shnum] self.failUnlessEqual(reader.remote_read(2**32, 2), "ab") - test_large_share.skip = "This test can spuriously fail if you have less than 4 GiB free on your filesystem, and if your filesystem doesn't support efficient sparse files then it is very expensive (Mac OS X is the only system I know of in the desktop/server area that doesn't support efficient sparse files)." + test_large_share.skip = "This test can spuriously fail if you have less than 4 GiB free on your filesystem, and if your filesystem doesn't support efficient sparse files then it is very expensive (Mac OS X and Windows don't support efficient sparse files)." def test_dont_overfill_dirs(self): """ diff --git a/src/allmydata/util/spans.py b/src/allmydata/util/spans.py old mode 100755 new mode 100644