guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: openexr: Disable broken test to fix build on i686.


From: Leo Famulari
Subject: 01/01: gnu: openexr: Disable broken test to fix build on i686.
Date: Fri, 11 Mar 2016 20:08:48 +0000

lfam pushed a commit to branch master
in repository guix.

commit bce6f7ce635a6ff16643d741b29b8b6ba3c83cc3
Author: Leo Famulari <address@hidden>
Date:   Thu Mar 10 15:03:19 2016 -0500

    gnu: openexr: Disable broken test to fix build on i686.
    
    * gnu/packages/graphics.scm (openexr)[arguments]: New field.
---
 gnu/packages/graphics.scm |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index c022d74..6edba50 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -206,6 +206,20 @@ exception-handling library.")
                    "\"/tmp/\"")))
               (patches (list (search-patch "openexr-missing-samples.patch")))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack '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 _
+             (substitute* "IlmImfTest/main.cpp"
+               (("#include \"testOptimizedInterleavePatterns.h\"")
+                 "//#include \"testOptimizedInterleavePatterns.h\"")
+               (("TEST \\(testOptimizedInterleavePatterns")
+                 "//TEST (testOptimizedInterleavePatterns"))
+             #t)))))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
     (propagated-inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]