Re: [PATCH 9/9] gnu: nss: Skip tests on powerpc-linux.

2021-04-06 Thread Vincent Legoll
On Tue, Apr 6, 2021 at 9:18 PM Efraim Flashner  wrote:
> On Tue, Apr 06, 2021 at 07:00:50PM +0200, Vincent Legoll wrote:
> > s/sporatically/sporadically/
>
> Not going to lie, spelling is hard. I normally have spell check turned
> off for scheme files.

But you *are* lying, you have the guile spell-(and-syntax-)checker enabled
for all your scheme files, and it is a picky one... ;-)

-- 
Vincent Legoll



Re: [PATCH 9/9] gnu: nss: Skip tests on powerpc-linux.

2021-04-06 Thread Efraim Flashner
On Tue, Apr 06, 2021 at 07:00:50PM +0200, Vincent Legoll wrote:
> Hello,
> 
> On Tue, Apr 6, 2021 at 2:44 PM Efraim Flashner  wrote:
> > + ;; Tests on powerpc-linux take forever and fail sporatically.
> 
> s/sporatically/sporadically/
> 

Not going to lie, spelling is hard. I normally have spell check turned
off for scheme files.

-- 
Efraim Flashner  אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted


signature.asc
Description: PGP signature


Re: [PATCH 9/9] gnu: nss: Skip tests on powerpc-linux.

2021-04-06 Thread Vincent Legoll
Hello,

On Tue, Apr 6, 2021 at 2:44 PM Efraim Flashner  wrote:
> + ;; Tests on powerpc-linux take forever and fail sporatically.

s/sporatically/sporadically/

-- 
Vincent Legoll



[PATCH 9/9] gnu: nss: Skip tests on powerpc-linux.

2021-04-06 Thread Efraim Flashner
* 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 e054363e9f..954a1d3b80 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 

 ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Mark H Weaver 

-;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner 
+;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner 

 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice 
 ;;; Copyright © 2020 Marius Bakke 
 ;;; Copyright © 2020 Jonathan Brielmaier 
@@ -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")))
-- 
2.31.1