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
20
21
21
outputs = [ "bin" "dev" "out" "doc" ];
22
22
23
23
+
patches =
24
24
+
# Disable broken test on musl libc
25
25
+
# https://github.com/AcademySoftwareFoundation/openexr/issues/1556
26
26
+
lib.optional stdenv.hostPlatform.isMusl ./disable-iex-test.patch
27
27
+
;
28
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
1
+
diff --git a/src/test/CMakeLists.txt b/src/test/CMakeLists.txt
2
2
+
index 44d9185d..8ffcd2b2 100644
3
3
+
--- a/src/test/CMakeLists.txt
4
4
+
+++ b/src/test/CMakeLists.txt
5
5
+
@@ -4,7 +4,7 @@
6
6
+
# We require this to get object library link library support and
7
7
+
# combined python 2 + 3 support
8
8
+
9
9
+
-add_subdirectory(IexTest)
10
10
+
+#add_subdirectory(IexTest)
11
11
+
add_subdirectory(OpenEXRCoreTest)
12
12
+
add_subdirectory(OpenEXRTest)
13
13
+
add_subdirectory(OpenEXRUtilTest)