guix-patches
[Top][All Lists]
Advanced

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

[bug#46371] [PATCH] gnu: lz4: Disable parallel testing.


From: Léo Le Bouter
Subject: [bug#46371] [PATCH] gnu: lz4: Disable parallel testing.
Date: Sun, 7 Feb 2021 20:48:04 +0100

* gnu/packages/compression.scm (lz4)[arguments]: Set "#:parallel-tests?"
keyword argument to "#f".
---
 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 8e7a2afc09..c502b37b9f 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
-- 
2.30.0






reply via email to

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