Skip to content
Snippets Groups Projects
Commit e5b648e0 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

gnu: apr-util: Run 'make check' sequentially.

* gnu/packages/apr.scm (apr-util)[arguments]: Add #:parallel-tests?.
parent 9f9236b7
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,13 @@ (define-public apr-util ...@@ -85,7 +85,13 @@ (define-public apr-util
(system* "./configure" (system* "./configure"
(string-append "--prefix=" out) (string-append "--prefix=" out)
(string-append "--with-apr=" apr))))) (string-append "--with-apr=" apr)))))
%standard-phases))) %standard-phases)
;; There are race conditions during 'make check'. Typically, the
;; 'testall' executable is not built yet by the time 'make check' tries
;; to run it. See
;; <http://lists.gnu.org/archive/html/guix-devel/2014-03/msg00261.html>.
#:parallel-tests? #f))
(home-page "http://apr.apache.org/") (home-page "http://apr.apache.org/")
(synopsis "One of the Apache Portable Runtime Library companions") (synopsis "One of the Apache Portable Runtime Library companions")
(description (description
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment