@@ -608,10 +608,6 @@ def test_decompress_eof_incomplete_stream(self):
608
608
dco .flush ()
609
609
self .assertFalse (dco .eof )
610
610
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." )
615
611
def test_decompress_unused_data (self ):
616
612
# Repeated calls to decompress() after EOF should accumulate data in
617
613
# dco.unused_data, instead of just storing the arg to the last call.
@@ -787,10 +783,6 @@ def test_64bit_compress(self, size):
787
783
finally :
788
784
comp = uncomp = data = None
789
785
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." )
794
786
@unittest .skipUnless (sys .maxsize > 2 ** 32 , 'requires 64bit platform' )
795
787
@bigmemtest (size = _4G + 100 , memuse = 3 )
796
788
def test_large_unused_data (self , size ):
@@ -805,10 +797,6 @@ def test_large_unused_data(self, size):
805
797
finally :
806
798
unused = comp = do = None
807
799
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." )
812
800
@unittest .skipUnless (sys .maxsize > 2 ** 32 , 'requires 64bit platform' )
813
801
@bigmemtest (size = _4G + 100 , memuse = 5 )
814
802
def test_large_unconsumed_tail (self , size ):
0 commit comments