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>
This commit is contained in:
Léo Le Bouter 2021-02-07 20:48:04 +01:00 committed by 宋文武
parent 4767ab4bf6
commit 78bbf6c443
No known key found for this signature in database
GPG key ID: D415BF253B515976

View file

@ -809,7 +809,10 @@ decompression of some loosely related file formats used by Microsoft.")
("python" ,python) ("python" ,python)
("valgrind" ,valgrind))) ("valgrind" ,valgrind)))
(arguments (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)) #:make-flags (list (string-append "CC=" ,(cc-for-target))
(string-append "prefix=" (assoc-ref %outputs "out"))) (string-append "prefix=" (assoc-ref %outputs "out")))
#:phases #:phases