gnu: gstreamer: Disable two tests on i686.
* gnu/packages/gstreamer.scm (gstreamer)[arguments]: Add phase when building for i686 systems.master
parent
5b600fcae6
commit
0025a1d31e
|
@ -119,8 +119,22 @@ arrays of data.")
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
;; FIXME: Since switching to the meson-build-system, two tests
|
||||||
|
;; started failing on i686. See
|
||||||
|
;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/499>.
|
||||||
|
,@(if (string-prefix? "i686" (or (%current-target-system)
|
||||||
|
(%current-system)))
|
||||||
|
`((add-after 'unpack 'disable-some-tests
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tests/check/gst/gstsystemclock.c"
|
||||||
|
(("tcase_add_test \\(tc_chain, test_stress_cleanup_unschedule.*")
|
||||||
|
"")
|
||||||
|
(("tcase_add_test \\(tc_chain, test_stress_reschedule.*")
|
||||||
|
""))
|
||||||
|
#t)))
|
||||||
|
'())
|
||||||
(add-after 'install 'move-docs
|
(add-after 'install 'move-docs
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
|
|
Reference in New Issue