guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: lz4: Disable parallel testing.


From: guix-commits
Subject: branch master updated: gnu: lz4: Disable parallel testing.
Date: Thu, 11 Feb 2021 04:29:02 -0500

This is an automated email from the git hooks/post-receive script.

iyzsong pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 78bbf6c  gnu: lz4: Disable parallel testing.
78bbf6c is described below

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

    gnu: lz4: Disable parallel testing.
    
    * gnu/packages/compression.scm (lz4)[arguments]: Set "#:parallel-tests?"
    keyword argument to "#f".
    
    Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
---
 gnu/packages/compression.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 8e7a2af..c502b37 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -809,7 +809,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]