mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: nss: Skip tests on powerpc-linux.
* gnu/packages/nss.scm (nss)[arguments]: Skip tests on powerpc-linux.
This commit is contained in:
parent
a1c16fe055
commit
592101268f
1 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
|
;;; 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 © 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 © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
;;; Copyright © 2020 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
|
@ -109,7 +109,10 @@ (define-public nss
|
||||||
;; Parallel builds are not supported (see:
|
;; Parallel builds are not supported (see:
|
||||||
;; https://bugzilla.mozilla.org/show_bug.cgi?id=1640328).
|
;; https://bugzilla.mozilla.org/show_bug.cgi?id=1640328).
|
||||||
`(#:parallel-build? #f
|
`(#: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
|
#:make-flags
|
||||||
(let* ((out (assoc-ref %outputs "out"))
|
(let* ((out (assoc-ref %outputs "out"))
|
||||||
(nspr (string-append (assoc-ref %build-inputs "nspr")))
|
(nspr (string-append (assoc-ref %build-inputs "nspr")))
|
||||||
|
|
Loading…
Reference in a new issue