Skip to content
Snippets Groups Projects
Commit b0364911 authored by Mark H Weaver's avatar Mark H Weaver
Browse files

gnu: pulseaudio: Increase timeouts for tests.

* gnu/packages/pulseaudio.scm: Set the 'CK_DEFAULT_TIMEOUT' environment
  variable to 120 in the 'pre-check' phase.  Suggested by Ludovic Courtès.
parent 02c108bd
No related branches found
No related tags found
No related merge requests found
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -152,7 +153,10 @@ (define pulseaudio ...@@ -152,7 +153,10 @@ (define pulseaudio
(lambda _ (lambda _
;; 'tests/lock-autospawn-test.c' wants to create a file ;; 'tests/lock-autospawn-test.c' wants to create a file
;; under ~/.config/pulse. ;; under ~/.config/pulse.
(setenv "HOME" (getcwd))) (setenv "HOME" (getcwd))
;; 'thread-test' needs more time on hydra and on slower
;; machines, so we set the default timeout to 120 seconds.
(setenv "CK_DEFAULT_TIMEOUT" "120"))
%standard-phases))) %standard-phases)))
(inputs (inputs
;; TODO: Add optional inputs (GTK+?). ;; TODO: Add optional inputs (GTK+?).
......
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