From 524c79fe72a2145ebb86b4554390b0ac06f9f800 Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Tue, 11 Jul 2023 08:29:12 -0400 Subject: [PATCH] Skip testOptimizedInterleavePatterns on x86_64 This was supposed to be fixed in 3.1.9 but the test still fails when compiled with F16C optimization enabled. Since the problem was already acknowledged to be the test rather than the code, just skip the test for now rather than altering the compilation. --- openexr.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openexr.spec b/openexr.spec index 14e488b..b643eb7 100644 --- a/openexr.spec +++ b/openexr.spec @@ -118,6 +118,10 @@ EXCLUDE_REGEX='DWA[AB]Compression' # https://github.com/AcademySoftwareFoundation/openexr/issues/1175 EXCLUDE_REGEX='ReadDeep|DWA[AB]Compression|testCompression|Rgba|SampleImages|SharedFrameBuffer' %endif +%ifarch x86_64 +# https://github.com/AcademySoftwareFoundation/openexr/issues/1456 +EXCLUDE_REGEX='OptimizedInterleavePatterns' +%endif %ctest --exclude-regex "$EXCLUDE_REGEX"