guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: lz4: Disable parallel testing.


From: guix-commits
Subject: 02/06: gnu: lz4: Disable parallel testing.
Date: Sat, 13 Feb 2021 19:14:15 -0500 (EST)

marusich pushed a commit to branch wip-ppc64le
in repository guix.

commit d1e20c3608ad6621086cf454a07aac0792d75d6b
Author: Léo Le Bouter <lle-bout@zaclys.net>
AuthorDate: Sun Feb 7 20:35:35 2021 +0100

    gnu: lz4: Disable parallel testing.
    
    * gnu/packages/compression.scm (lz4)[arguments]: Set "#:parallel-tests?"
    keyword argument to "#f".
    
    Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
---
 gnu/packages/compression.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index d5fb763..9e21e43 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -29,7 +29,7 @@
 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2020 Lars-Dominik Braun <lars@6xq.net>
 ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
-;;; Copyright © 2020 Léo Le Bouter <lle-bout@zaclys.net>
+;;; Copyright © 2020, 2021 Léo Le Bouter <lle-bout@zaclys.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -808,7 +808,10 @@ decompression of some loosely related file formats used by 
Microsoft.")
        ("python" ,python)
        ("valgrind" ,valgrind)))
     (arguments
-     `(#:test-target "test"
+     `(;; Not designed for parallel testing.
+       ;; See https://github.com/lz4/lz4/issues/957#issuecomment-737419821
+       #:parallel-tests? #f
+       #:test-target "test"
        #:make-flags (list (string-append "CC=" ,(cc-for-target))
                           (string-append "prefix=" (assoc-ref %outputs "out")))
        #:phases



reply via email to

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