From 5f919605e94b12d7f56656a30f66f205c24cde98 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 8 Jul 2021 14:10:54 +0200 Subject: gnu: libdatrie: Run tests sequentially. Fixes . * gnu/packages/gtk.scm (libdatrie)[arguments]: Add #:parallel-tests?. --- gnu/packages/gtk.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index dc0089cbd9..f8961def92 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -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))) -- cgit v1.2.3