diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-09-26 12:04:27 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-09-26 18:13:29 +0300 |
commit | 5c7fb1b82d296124673d53f60daef86f3296e958 (patch) | |
tree | 654b0dc073b36e2f152b249181f9690f6310f81b /gnu/packages/gstreamer.scm | |
parent | 541b45ce603834feb26061d16aef2180dede7220 (diff) | |
download | guix-5c7fb1b82d296124673d53f60daef86f3296e958.tar guix-5c7fb1b82d296124673d53f60daef86f3296e958.tar.gz |
gnu: gst-plugins-base: Skip a test on armhf-linux.
* gnu/packages/gstreamer.scm (gst-plugins-base)[arguments]: When
building for armhf-linux skip a test during the
'disable-problematic-tests phase.
Change-Id: I606ecd1c38f110b1c31812d86d6b3304e924b557
Diffstat (limited to 'gnu/packages/gstreamer.scm')
-rw-r--r-- | gnu/packages/gstreamer.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 66978fc2bc..c4791757a7 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -601,6 +601,9 @@ This package provides the core library and elements.") ((target-x86-32?) #~((substitute* "tests/check/meson.build" ((".*'libs/libsabi\\.c'.*") "")))) + ((target-arm32?) + #~((substitute* "tests/check/meson.build" + ((".*'orc_adder.*") "")))) ((target-riscv64?) #~((substitute* "tests/check/meson.build" ((".*'libs/gstglcolorconvert\\.c'.*") "") |