guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: password-store: Don't run tests in parallel.


From: Marius Bakke
Subject: 02/02: gnu: password-store: Don't run tests in parallel.
Date: Sat, 10 Dec 2016 13:11:16 +0000 (UTC)

mbakke pushed a commit to branch master
in repository guix.

commit a77f03608498de5e93560da8aac0cb8bf7cec7a7
Author: Christopher Baines <address@hidden>
Date:   Sat Dec 10 09:55:37 2016 +0000

    gnu: password-store: Don't run tests in parallel.
    
    * gnu/packages/password-utils.scm (password-store): Don't run tests in
      parallel, as it causes them to hang and the build to timeout.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/password-utils.scm |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index bdb3acf..8f62108 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -291,6 +291,9 @@ any X11 window.")
                (wrap-program (string-append out "/bin/pass")
                  `("PATH" ":" prefix (,(string-join path ":"))))))))
        #:make-flags (list "CC=gcc" (string-append "PREFIX=" %output))
+       ;; Parallel tests may cause a race condition leading to a
+       ;; timeout in some circumstances.
+       #:parallel-tests? #f
        #:test-target "test"))
     (inputs
      `(("getopt" ,util-linux)



reply via email to

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