From 69967919b3d16afe9ac3f13f94867eac373c858c Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 13 Nov 2020 11:35:44 +0100 Subject: gnu: gst-plugins-good: Fix test failure on 32-bit systems. * gnu/packages/gstreamer.scm (gst-plugins-good)[arguments]: Add phase fix-broken-test. --- gnu/packages/gstreamer.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu/packages/gstreamer.scm') diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 4c3e3419ef..b74b6fdc00 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -597,6 +597,14 @@ for the GStreamer multimedia library.") `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-broken-test + (lambda _ + ;; Fix test failure on 32-bit. Remove for > 1.18.1. + ;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/803 + (substitute* "tests/check/elements/qtdemux.c" + (("10000000") + "G_GUINT64_CONSTANT (10000000)")) + #t)) (add-before 'check 'pre-check (lambda _ ;; Tests require a running X server. -- cgit v1.2.3