Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master-1, master-0, and 0.9.4

Cherry-pick test for large buffer deltas.

Original change from yifanzhang at https://github.com/yifanzhang/dulwich

Changeset 2b3f611664a3

Parent baca6cbbc1fa

by Jelmer Vernooij

Changes to one file · Browse files at 2b3f611664a3 Showing diff from parent baca6cbbc1fa Diff from another changeset...

 
162
163
164
 
165
166
167
 
178
179
180
 
 
 
 
181
182
183
 
162
163
164
165
166
167
168
 
179
180
181
182
183
184
185
186
187
188
@@ -162,6 +162,7 @@
    test_string_empty = ''   test_string_big = 'Z' * 8192 + test_string_huge = 'Z' * 100000     def _test_roundtrip(self, base, target):   self.assertEqual(target, @@ -178,6 +179,10 @@
    def test_overflow(self):   self._test_roundtrip(self.test_string_empty, self.test_string_big) + + def test_overflow_64k(self): + self.skipTest("big strings don't work yet") + self._test_roundtrip(self.test_string_huge, self.test_string_huge)      class TestPackData(PackTests):