mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 18:09:18 -05:00
gnu: farstream: Disable a failing test.
* gnu/packages/freedesktop.scm (farstream) [arguments]: Delete trailing #t. Rename the disable-timeout-tests phase to disable-problematic-tests, and disable an extra rtp/recvcodecs test. Standardize match pattern and update comment. [native-inputs]: Update the common input.
This commit is contained in:
parent
76e016958d
commit
04e1103edf
1 changed files with 15 additions and 16 deletions
|
@ -27,7 +27,7 @@
|
||||||
;;; Copyright © 2021 Robby Zambito <contact@robbyzambito.me>
|
;;; Copyright © 2021 Robby Zambito <contact@robbyzambito.me>
|
||||||
;;; Copyright © 2021, 2022 Maxime Devos <maximedevos@telenet.be>
|
;;; Copyright © 2021, 2022 Maxime Devos <maximedevos@telenet.be>
|
||||||
;;; Copyright © 2021, 2022 John Kehayias <john.kehayias@protonmail.com>
|
;;; Copyright © 2021, 2022 John Kehayias <john.kehayias@protonmail.com>
|
||||||
;;; Copyright © 2021, 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021, 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2022 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
;;; Copyright © 2022 Daniel Meißner <daniel.meissner-i4k@ruhr-uni-bochum.de>
|
||||||
;;; Copyright © 2022 muradm <mail@muradm.net>
|
;;; Copyright © 2022 muradm <mail@muradm.net>
|
||||||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||||||
|
@ -245,17 +245,18 @@ (define-public farstream
|
||||||
(delete-file "autogen.sh")
|
(delete-file "autogen.sh")
|
||||||
(copy-recursively
|
(copy-recursively
|
||||||
(assoc-ref %build-inputs "common")
|
(assoc-ref %build-inputs "common")
|
||||||
"common")
|
"common")))
|
||||||
#t))
|
(add-after 'unpack 'disable-problematic-tests
|
||||||
(add-after 'unpack 'disable-timeout-tests
|
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "tests/check/Makefile.am"
|
(substitute* "tests/check/Makefile.am"
|
||||||
;; This test timeouts despite changing
|
;; This test fails since updating gstreamer to version 1.22.1
|
||||||
;; the value of 'CK_DEFAULT_TIMEOUT' to 600,
|
;; (see:
|
||||||
;; as per %common-gstreamer-phases.
|
;; https://gitlab.freedesktop.org/farstream/farstream/-/issues/25).
|
||||||
;; Reported to upstream:
|
(("^\trtp/recvcodecs.*") "")
|
||||||
;; https://gitlab.freedesktop.org/farstream/farstream/-/issues/20
|
;; This test timeouts despite changing the value of
|
||||||
(("[ \t]*transmitter/nice.*$") ""))))
|
;; 'CK_DEFAULT_TIMEOUT' to 600 (see:
|
||||||
|
;; https://gitlab.freedesktop.org/farstream/farstream/-/issues/20).
|
||||||
|
(("^\ttransmitter/nice.*") ""))))
|
||||||
(add-after 'unpack 'patch-docbook-xml
|
(add-after 'unpack 'patch-docbook-xml
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(with-directory-excursion "docs"
|
(with-directory-excursion "docs"
|
||||||
|
@ -263,8 +264,7 @@ (define-public farstream
|
||||||
"plugins/farstream-plugins-docs.sgml")
|
"plugins/farstream-plugins-docs.sgml")
|
||||||
(("http://www.oasis-open.org/docbook/xml/4.1.2/")
|
(("http://www.oasis-open.org/docbook/xml/4.1.2/")
|
||||||
(string-append (assoc-ref inputs "docbook-xml")
|
(string-append (assoc-ref inputs "docbook-xml")
|
||||||
"/xml/dtd/docbook/"))))
|
"/xml/dtd/docbook/")))))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
@ -274,11 +274,10 @@ (define-public farstream
|
||||||
(uri
|
(uri
|
||||||
(git-reference
|
(git-reference
|
||||||
(url "https://gitlab.freedesktop.org/gstreamer/common.git")
|
(url "https://gitlab.freedesktop.org/gstreamer/common.git")
|
||||||
(commit "88e512ca7197a45c4114f7fa993108f23245bf50")))
|
(commit "52adcdb89a9eb527df38c569539d95c1c7aeda6e")))
|
||||||
(file-name
|
(file-name (git-file-name "common" "latest.52adcdb"))
|
||||||
(git-file-name "common" "latest.88e512c"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1nk94pnskjyngqcfb9p32g4yvf4nzpjszisw24r9azl0pawqpsn6"))))
|
(base32 "1zlm1q1lgcb76gi82rial5bwy2j9sz1x6x48ijhiz89cml7xxd1r"))))
|
||||||
("docbook-xml" ,docbook-xml-4.1.2)
|
("docbook-xml" ,docbook-xml-4.1.2)
|
||||||
("docbook-xsl" ,docbook-xsl)
|
("docbook-xsl" ,docbook-xsl)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
|
|
Loading…
Reference in a new issue