From d8dbce17ee098b5ad799fc0e06eddf47eb7c1ba5 Mon Sep 17 00:00:00 2001 From: antonfirsov Date: Fri, 10 Apr 2026 02:43:39 +0200 Subject: [PATCH] Disable BMP tests -- https://github.com/SixLabors/ImageSharp/issues/3112 --- tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs b/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs index caa6c507dc..ffefd50dff 100644 --- a/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs +++ b/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs @@ -224,8 +224,9 @@ public class BmpDecoderTests } } + // RLE8Cut case disabled, see https://github.com/SixLabors/ImageSharp/issues/3112 + // [WithFile(RLE8Cut, PixelTypes.Rgba32)] [Theory] - [WithFile(RLE8Cut, PixelTypes.Rgba32)] [WithFile(RLE8Delta, PixelTypes.Rgba32)] public void BmpDecoder_CanDecode_RunLengthEncoded_8Bit_WithDelta_MagickRefDecoder(TestImageProvider provider) where TPixel : unmanaged, IPixel @@ -236,11 +237,12 @@ public class BmpDecoderTests image.CompareToOriginal(provider, MagickReferenceDecoder.Png); } + // RLE8Inverted cases disabled, see https://github.com/SixLabors/ImageSharp/issues/3112. + // [WithFile(RLE8Inverted, PixelTypes.Rgba32, false)] + // [WithFile(RLE8Inverted, PixelTypes.Rgba32, true)] [Theory] [WithFile(RLE8, PixelTypes.Rgba32, false)] - [WithFile(RLE8Inverted, PixelTypes.Rgba32, false)] [WithFile(RLE8, PixelTypes.Rgba32, true)] - [WithFile(RLE8Inverted, PixelTypes.Rgba32, true)] public void BmpDecoder_CanDecode_RunLengthEncoded_8Bit(TestImageProvider provider, bool enforceDiscontiguousBuffers) where TPixel : unmanaged, IPixel {