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>master
parent
4767ab4bf6
commit
78bbf6c443
|
@ -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
|
||||
|
|
Reference in New Issue