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 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.")
|
|||
(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)))
|
||||
|
|
Reference in a new issue