@@ -470,7 +470,6 @@ def test_clear_unconsumed_tail(self):
470
470
ddata += dco .decompress (dco .unconsumed_tail )
471
471
self .assertEqual (dco .unconsumed_tail , b"" )
472
472
473
- @pytest .mark .xfail (reason = "Flush is not implemented in a compatible way." )
474
473
def test_flushes (self ):
475
474
# Test flush() with the various options, using all the
476
475
# different levels in order to provide more variations.
@@ -563,7 +562,6 @@ def test_dictionary(self):
563
562
dco = isal_zlib .decompressobj ()
564
563
self .assertRaises (isal_zlib .error , dco .decompress , cd )
565
564
566
- @pytest .mark .xfail (reason = "Flush is not implemented in a compatible way." )
567
565
def test_dictionary_streaming (self ):
568
566
# This simulates the reuse of a compressor object for compressing
569
567
# several separate data streams.
@@ -649,7 +647,6 @@ def test_decompress_raw_with_dictionary(self):
649
647
uncomp = dco .decompress (comp ) + dco .flush ()
650
648
self .assertEqual (zdict , uncomp )
651
649
652
- @pytest .mark .xfail (reason = "Flush is not implemented in a compatible way." )
653
650
def test_flush_with_freed_input (self ):
654
651
# Issue #16411: decompressor accesses input to last decompress() call
655
652
# in flush(), even if this object has been freed in the meanwhile.
@@ -662,7 +659,6 @@ def test_flush_with_freed_input(self):
662
659
data = isal_zlib .compress (input2 ) # noqa: F841
663
660
self .assertEqual (dco .flush (), input1 [1 :])
664
661
665
- @pytest .mark .xfail (reason = "Flush is not implemented in a compatible way." )
666
662
@bigmemtest (size = _4G , memuse = 1 )
667
663
def test_flush_large_length (self , size ):
668
664
# Test flush(length) parameter greater than internal limit UINT_MAX
@@ -672,7 +668,6 @@ def test_flush_large_length(self, size):
672
668
dco .decompress (data , 1 )
673
669
self .assertEqual (dco .flush (size ), input [1 :])
674
670
675
- @pytest .mark .xfail (reason = "Flush is not implemented in a compatible way." )
676
671
def test_flush_custom_length (self ):
677
672
input = HAMLET_SCENE * 10
678
673
data = isal_zlib .compress (input , 1 )
0 commit comments