[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/09: gnu: nss: Skip tests on powerpc-linux.
From: |
guix-commits |
Subject: |
09/09: gnu: nss: Skip tests on powerpc-linux. |
Date: |
Tue, 30 Mar 2021 07:51:42 -0400 (EDT) |
efraim pushed a commit to branch wip-ppc
in repository guix.
commit b0b76cdac4e9147105b1613fbb69707b8de5366a
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sat May 9 22:35:20 2020 +0300
gnu: nss: Skip tests on powerpc-linux.
* gnu/packages/nss.scm (nss)[arguments]: Skip tests on powerpc-linux.
---
gnu/packages/nss.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm
index e054363..954a1d3 100644
--- a/gnu/packages/nss.scm
+++ b/gnu/packages/nss.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès
<ludo@gnu.org>
;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Mark H Weaver
<mhw@netris.org>
-;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner
<efraim@flashner.co.il>
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
@@ -109,7 +109,10 @@ in the Mozilla clients.")
;; Parallel builds are not supported (see:
;; https://bugzilla.mozilla.org/show_bug.cgi?id=1640328).
`(#:parallel-build? #f
- #:tests? #t ;requires at least one hour to run
+ ;; Tests on powerpc-linux take forever and fail sporatically.
+ #:tests? ,(if (string=? "powerpc-linux" (or (%current-system)
+ (%current-target-system)))
+ '#f '#t)
#:make-flags
(let* ((out (assoc-ref %outputs "out"))
(nspr (string-append (assoc-ref %build-inputs "nspr")))
- branch wip-ppc created (now b0b76cd), guix-commits, 2021/03/30
- 01/09: gnu: bootstrap: Add support for powerpc-linux., guix-commits, 2021/03/30
- 06/09: gnu: american-fuzzy-lop: Add support for powerpc-linux., guix-commits, 2021/03/30
- 09/09: gnu: nss: Skip tests on powerpc-linux.,
guix-commits <=
- 03/09: gnu: binutils: Adjust test suite on powerpc-linux., guix-commits, 2021/03/30
- 04/09: gnu: mesa: Add support for powerpc-linux., guix-commits, 2021/03/30
- 08/09: gnu: mercurial: Skip tests on powerpc-linux., guix-commits, 2021/03/30
- 02/09: gnu: guile-3.0: Fix building on powerpc-linux., guix-commits, 2021/03/30
- 07/09: build: qemu-command: Add support for powerpc., guix-commits, 2021/03/30
- 05/09: gnu: Add mac-fdisk., guix-commits, 2021/03/30