mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
4767ab4bf6
commit
78bbf6c443
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue