me
/
guix
Archived
1
0
Fork 0

gnu: libdatrie: Run tests sequentially.

Fixes <https://bugs.gnu.org/49463>.

* gnu/packages/gtk.scm (libdatrie)[arguments]: Add #:parallel-tests?.
master
Ludovic Courtès 2021-07-08 14:10:54 +02:00
parent 7a9f4822c0
commit 5f919605e9
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 1 deletions

View File

@ -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)))