gnu: gstreamer: Disable the pipelines-seek test.
* gnu/packages/gstreamer.scm (gstreamer) [phases]{disable-problematic-tests}: New phase.
This commit is contained in:
parent
86528cab04
commit
a4ad0187d3
1 changed files with 9 additions and 1 deletions
|
@ -497,7 +497,15 @@ the GStreamer multimedia framework.")
|
||||||
"")
|
"")
|
||||||
(("tcase_add_test \\(tc_chain, test_stress_reschedule.*")
|
(("tcase_add_test \\(tc_chain, test_stress_reschedule.*")
|
||||||
"")))))
|
"")))))
|
||||||
'()))))
|
'())
|
||||||
|
(add-after 'unpack 'disable-problematic-tests
|
||||||
|
(lambda _
|
||||||
|
;; Disable the 'pipelines-seek' test, which appears to be load
|
||||||
|
;; sensitive (see:
|
||||||
|
;; https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/854).
|
||||||
|
(substitute* "tests/check/meson.build"
|
||||||
|
((".*'pipelines/seek.c'.*")
|
||||||
|
"")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
;; In gstreamer-1.0.pc:
|
;; In gstreamer-1.0.pc:
|
||||||
;; Requires: glib-2.0, gobject-2.0
|
;; Requires: glib-2.0, gobject-2.0
|
||||||
|
|
Reference in a new issue