openexr_3: disable failing test on musl

Yureka fc2cabf2 8c297a38

+19
+6
pkgs/development/libraries/openexr/3.nix
··· 20 20 21 21 outputs = [ "bin" "dev" "out" "doc" ]; 22 22 23 + patches = 24 + # Disable broken test on musl libc 25 + # https://github.com/AcademySoftwareFoundation/openexr/issues/1556 26 + lib.optional stdenv.hostPlatform.isMusl ./disable-iex-test.patch 27 + ; 28 + 23 29 # tests are determined to use /var/tmp on unix 24 30 postPatch = '' 25 31 cat <(find . -name tmpDir.h) <(echo src/test/OpenEXRCoreTest/main.cpp) | while read -r f ; do
+13
pkgs/development/libraries/openexr/disable-iex-test.patch
··· 1 + diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt 2 + index 44d9185d..8ffcd2b2 100644 3 + --- a/src/test/CMakeLists.txt 4 + +++ b/src/test/CMakeLists.txt 5 + @@ -4,7 +4,7 @@ 6 + # We require this to get object library link library support and 7 + # combined python 2 + 3 support 8 + 9 + -add_subdirectory(IexTest) 10 + +#add_subdirectory(IexTest) 11 + add_subdirectory(OpenEXRCoreTest) 12 + add_subdirectory(OpenEXRTest) 13 + add_subdirectory(OpenEXRUtilTest)