Skip to content

Commit 8f884bf

Browse files
committed
Stop skipping decompress tests
1 parent 7cab211 commit 8f884bf

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/test_zlib_compliance.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -608,10 +608,6 @@ def test_decompress_eof_incomplete_stream(self):
608608
dco.flush()
609609
self.assertFalse(dco.eof)
610610

611-
@pytest.mark.xfail(reason="Decompress object does not work as expected"
612-
" with regards to unconsumed tails/data due to "
613-
"the isa-l deflate process consuming too much"
614-
" data.")
615611
def test_decompress_unused_data(self):
616612
# Repeated calls to decompress() after EOF should accumulate data in
617613
# dco.unused_data, instead of just storing the arg to the last call.
@@ -787,10 +783,6 @@ def test_64bit_compress(self, size):
787783
finally:
788784
comp = uncomp = data = None
789785

790-
@pytest.mark.xfail(reason="Decompress object does not work as expected"
791-
" with regards to unconsumed tails/data due to "
792-
"the isa-l deflate process consuming too much"
793-
" data.")
794786
@unittest.skipUnless(sys.maxsize > 2 ** 32, 'requires 64bit platform')
795787
@bigmemtest(size=_4G + 100, memuse=3)
796788
def test_large_unused_data(self, size):
@@ -805,10 +797,6 @@ def test_large_unused_data(self, size):
805797
finally:
806798
unused = comp = do = None
807799

808-
@pytest.mark.xfail(reason="Decompress object does not work as expected"
809-
" with regards to unconsumed tails/data due to "
810-
"the isa-l deflate process consuming too much"
811-
" data.")
812800
@unittest.skipUnless(sys.maxsize > 2 ** 32, 'requires 64bit platform')
813801
@bigmemtest(size=_4G + 100, memuse=5)
814802
def test_large_unconsumed_tail(self, size):

0 commit comments

Comments
 (0)