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:
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

View file

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