From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Baines Subject: [PATCH 2/2] gnu: password-store: Don't run tests in parallel Date: Sat, 10 Dec 2016 09:55:37 +0000 Message-ID: <20161210095537.6818-2-mail@cbaines.net> References: <20161210095537.6818-1-mail@cbaines.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFeNe-00029I-9u for guix-devel@gnu.org; Sat, 10 Dec 2016 04:55:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cFeNb-0006Xi-76 for guix-devel@gnu.org; Sat, 10 Dec 2016 04:55:46 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:55427 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFeNb-0006XL-0x for guix-devel@gnu.org; Sat, 10 Dec 2016 04:55:43 -0500 In-Reply-To: <20161210095537.6818-1-mail@cbaines.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/password-utils.scm (password-store): Don't run tests in parallel, as it causes them to hang and the build to timeout. --- gnu/packages/password-utils.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index bdb3acf..98669a6 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -291,6 +291,7 @@ 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? #f #:test-target "test")) (inputs `(("getopt" ,util-linux) -- 2.10.2