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.
This commit is contained in:
Yaakov Selkowitz 2023-07-11 08:29:12 -04:00
parent 4b7ecb81ca
commit 524c79fe72

View File

@ -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"