- Update to 3.2.1: - Fix compatibliity with newer versions of Dulwich. OBS-URL: https://build.opensuse.org/request/show/906340 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/breezy?expand=0&rev=16
22 lines
822 B
Diff
22 lines
822 B
Diff
---
|
|
breezy/tests/blackbox/test_big_file.py | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
--- a/breezy/tests/blackbox/test_big_file.py
|
|
+++ b/breezy/tests/blackbox/test_big_file.py
|
|
@@ -67,10 +67,11 @@ class TestAdd(tests.TestCaseWithTranspor
|
|
|
|
def setUp(self):
|
|
super(TestAdd, self).setUp()
|
|
- previous = resource.getrlimit(RESOURCE)
|
|
- self.addCleanup(resource.setrlimit, RESOURCE, previous)
|
|
- resource.setrlimit(RESOURCE, (LIMIT, -1))
|
|
+ # previous = resource.getrlimit(RESOURCE)
|
|
+ # self.addCleanup(resource.setrlimit, RESOURCE, previous)
|
|
+ # resource.setrlimit(RESOURCE, (LIMIT, -1))
|
|
|
|
+ @tests.unittest.skip("Test doesn't work without resource.setrlimit")
|
|
def test_allocate(self):
|
|
def allocate():
|
|
"." * BIG_FILE_SIZE
|