gnu: gstreamer: Increase test timeouts.
Fixes <https://bugs.gnu.org/36464>. Reported by Steffen Rytter Postas <nc@scalehost.eu>. * gnu/packages/gstreamer.scm (%common-gstreamer-phases): New variable. (gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-editing-services)[arguments]: Use it.
This commit is contained in:
parent
0c8a51c7d2
commit
a64eeaf755
1 changed files with 22 additions and 2 deletions
|
@ -104,6 +104,17 @@ (define-public orc
|
|||
;; under the 3-clause BSD license, the rest is under 2-clause BSD license.
|
||||
(license (list license:bsd-2 license:bsd-3))))
|
||||
|
||||
;; Increase the test timeouts to accommodate slow or busy machines.
|
||||
(define %common-gstreamer-phases
|
||||
'((add-after 'unpack 'increase-test-timeout
|
||||
(lambda _
|
||||
(substitute* "tests/check/meson.build"
|
||||
(("'CK_DEFAULT_TIMEOUT', '20'")
|
||||
"'CK_DEFAULT_TIMEOUT', '60'")
|
||||
(("timeout ?: 3 \\* 60")
|
||||
"timeout: 9 * 60"))
|
||||
#t))))
|
||||
|
||||
(define-public gstreamer
|
||||
(package
|
||||
(name "gstreamer")
|
||||
|
@ -122,6 +133,7 @@ (define-public gstreamer
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
,@%common-gstreamer-phases
|
||||
;; FIXME: Since switching to the meson-build-system, two tests
|
||||
;; started failing on i686. See
|
||||
;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/499>.
|
||||
|
@ -220,12 +232,13 @@ (define-public gst-plugins-base
|
|||
("gobject-introspection" ,gobject-introspection)
|
||||
("python-wrapper" ,python-wrapper)))
|
||||
(arguments
|
||||
'(#:configure-flags '("-Dgl=disabled"
|
||||
`(#:configure-flags '("-Dgl=disabled"
|
||||
;; FIXME: Documentation fails to build without
|
||||
;; enabling GL above, which causes other problems.
|
||||
"-Ddoc=false")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
,@%common-gstreamer-phases
|
||||
(add-before 'configure 'patch
|
||||
(lambda _
|
||||
(substitute* "tests/check/libs/pbutils.c"
|
||||
|
@ -284,6 +297,7 @@ (define-public gst-plugins-good
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
,@%common-gstreamer-phases
|
||||
,@(if (string-prefix? "arm" (or (%current-target-system)
|
||||
(%current-system)))
|
||||
;; FIXME: These tests started failing on armhf after switching to Meson.
|
||||
|
@ -332,6 +346,7 @@ (define-public gst-plugins-bad
|
|||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
,@%common-gstreamer-phases
|
||||
,@(if (string-prefix? "arm" (or (%current-target-system)
|
||||
(%current-system)))
|
||||
;; Disable test that fails on ARMv7.
|
||||
|
@ -421,6 +436,9 @@ (define-public gst-plugins-ugly
|
|||
(base32
|
||||
"1jpvc32x6q01zjkfgh6gmq6aaikiyfwwnhj7bmvn52syhrdl202m"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
,@%common-gstreamer-phases)))
|
||||
(inputs
|
||||
`(("gst-plugins-base" ,gst-plugins-base)
|
||||
("liba52" ,liba52)
|
||||
|
@ -492,7 +510,9 @@ (define-public gst-editing-services
|
|||
(build-system meson-build-system)
|
||||
(arguments
|
||||
;; FIXME: 16/22 failing tests.
|
||||
`(#:tests? #f))
|
||||
`(#:tests? #f
|
||||
#:phases (modify-phases %standard-phases
|
||||
,@%common-gstreamer-phases)))
|
||||
(inputs
|
||||
`(("gst-plugins-base" ,gst-plugins-base)
|
||||
("libxml2" ,libxml2)))
|
||||
|
|
Loading…
Reference in a new issue