mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: openexr@2: Skip failing test on i686.
* gnu/packages/graphics.scm (openexr-2)[arguments]: In 'disable-broken-test', skip 'testCompression' as well.
This commit is contained in:
parent
2c5c04eb2b
commit
7c1b82f256
1 changed files with 7 additions and 5 deletions
|
@ -1181,13 +1181,15 @@ (define-public openexr-2
|
||||||
#t))
|
#t))
|
||||||
,@(if (not (target-64bit?))
|
,@(if (not (target-64bit?))
|
||||||
`((add-after 'change-directory 'disable-broken-test
|
`((add-after 'change-directory 'disable-broken-test
|
||||||
;; This test fails on i686. Upstream developers suggest that
|
|
||||||
;; this test is broken on i686 and can be safely disabled:
|
|
||||||
;; https://github.com/openexr/openexr/issues/67#issuecomment-21169748
|
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "IlmImfTest/main.cpp"
|
(substitute* "IlmImfTest/main.cpp"
|
||||||
((".*testOptimizedInterleavePatterns.*") ""))
|
;; This test fails on i686. Upstream developers suggest
|
||||||
#t)))
|
;; that this test is broken on i686 and can be safely
|
||||||
|
;; disabled:
|
||||||
|
;; https://github.com/openexr/openexr/issues/67#issuecomment-21169748
|
||||||
|
((".*testOptimizedInterleavePatterns.*") "")
|
||||||
|
;; This one fails similarly on i686.
|
||||||
|
((".*testCompression.*") "")))))
|
||||||
'()))))
|
'()))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
|
|
Loading…
Reference in a new issue