guix-commits
[Top][All Lists]
Advanced

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

01/09: gnu: gsl: Disable tests on aarch64-linux.


From: Efraim Flashner
Subject: 01/09: gnu: gsl: Disable tests on aarch64-linux.
Date: Tue, 28 Mar 2017 03:17:38 -0400 (EDT)

efraim pushed a commit to branch core-updates
in repository guix.

commit 6f766069843419ce862be79e15523c43036f7bc6
Author: Efraim Flashner <address@hidden>
Date:   Mon Mar 27 09:39:48 2017 +0300

    gnu: gsl: Disable tests on aarch64-linux.
    
    * gnu/packages/maths.scm (gsl)[arguments]: Do not run the test suite on
    aarch64-linux.
    [home-page]: Use https.
---
 gnu/packages/maths.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 8fad8f0..f2e0c66 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -270,8 +270,14 @@ semiconductors.")
               (patches (search-patches "gsl-test-i686.patch"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:parallel-tests? #f))
-    (home-page "http://www.gnu.org/software/gsl/";)
+     `(#:parallel-tests? #f
+       ;; Currently there are numerous tests that fail on "exotic"
+       ;; architectures such as aarch64 and ppc64le.
+       ,@(if (string-prefix? "aarch64-linux"
+                             (or (%current-target-system) (%current-system)))
+           '(#:tests? #f)
+           '())))
+    (home-page "https://www.gnu.org/software/gsl/";)
     (synopsis "Numerical library for C and C++")
     (description
      "The GNU Scientific Library is a library for numerical analysis in C



reply via email to

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