mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: libdatrie: Run tests sequentially.
Fixes <https://bugs.gnu.org/49463>. * gnu/packages/gtk.scm (libdatrie)[arguments]: Add #:parallel-tests?.
This commit is contained in:
parent
7a9f4822c0
commit
5f919605e9
1 changed files with 5 additions and 1 deletions
|
@ -280,7 +280,11 @@ (define-public libdatrie
|
|||
(list
|
||||
(string-append "--with-html-docdir="
|
||||
(assoc-ref %outputs "doc")
|
||||
"/share/doc/datrie/html"))))
|
||||
"/share/doc/datrie/html"))
|
||||
|
||||
;; Several tests refer to the 'test.tri' file, leading to race
|
||||
;; conditions when running tests in parallel.
|
||||
#:parallel-tests? #f))
|
||||
(native-inputs
|
||||
`(("doxygen" ,doxygen)
|
||||
("pkg-config" ,pkg-config)))
|
||||
|
|
Loading…
Reference in a new issue