guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: libdatrie: Run tests sequentially.


From: guix-commits
Subject: 01/02: gnu: libdatrie: Run tests sequentially.
Date: Thu, 8 Jul 2021 08:15:50 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit 5f919605e94b12d7f56656a30f66f205c24cde98
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Thu Jul 8 14:10:54 2021 +0200

    gnu: libdatrie: Run tests sequentially.
    
    Fixes <https://bugs.gnu.org/49463>.
    
    * gnu/packages/gtk.scm (libdatrie)[arguments]: Add #:parallel-tests?.
---
 gnu/packages/gtk.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index dc0089c..f8961de 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]