tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openexr_3: disable failing test on musl
Yureka
2 years ago
fc2cabf2
8c297a38
+19
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
openexr
3.nix
disable-iex-test.patch
+6
pkgs/development/libraries/openexr/3.nix
···
20
21
outputs = [ "bin" "dev" "out" "doc" ];
22
0
0
0
0
0
0
23
# tests are determined to use /var/tmp on unix
24
postPatch = ''
25
cat <(find . -name tmpDir.h) <(echo src/test/OpenEXRCoreTest/main.cpp) | while read -r f ; do
···
20
21
outputs = [ "bin" "dev" "out" "doc" ];
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
+
29
# tests are determined to use /var/tmp on unix
30
postPatch = ''
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
···
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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)