diff options
author | Efraim Flashner <[email protected]> | 2025-03-02 14:46:53 +0200 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:49 +0100 |
commit | 6315f3ff4d3d0cf1bd89b92bdb9a139aee404ca2 (patch) | |
tree | 653e8bafa56b52b1d04a3e43c37b0a5148291828 | |
parent | 09d64a7d62e63bf8aea371beb9a3666e0356ad5a (diff) |
gnu: gst-plugins-base: Skip 2 tests on powerpc64le-linux.
* gnu/packages/gstreamer.scm (gst-plugins-base)[arguments]: When
building for powerpc64le-linux adjust the 'disable-problematic-tests
phase to skip 2 more tests.
Change-Id: Ic49b5c02332d2f8889bc481fa75b816f7526864e
-rw-r--r-- | gnu/packages/gstreamer.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 27f4c03226..4a575e4845 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2014 John Darrington <[email protected]> ;;; Copyright © 2015, 2016 Sou Bunnbu <[email protected]> ;;; Copyright © 2015, 2018 Mark H Weaver <[email protected]> -;;; Copyright © 2016, 2017, 2022-2024 Efraim Flashner <[email protected]> +;;; Copyright © 2016, 2017, 2022-2025 Efraim Flashner <[email protected]> ;;; Copyright © 2016, 2018 Leo Famulari <[email protected]> ;;; Copyright © 2017, 2023 Ricardo Wurmus <[email protected]> ;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <[email protected]> @@ -609,6 +609,10 @@ This package provides the core library and elements.") ((target-x86-32?) #~((substitute* "tests/check/meson.build" ((".*'libs/libsabi\\.c'.*") "")))) + ((target-ppc64le?) + #~((substitute* "tests/check/meson.build" + ((".*'elements/glimagesink\\.c'.*") "") + ((".*'pipelines/gl-launch-lines\\.c'.*") "")))) ((target-arm32?) #~((substitute* "tests/check/meson.build" ((".*'orc_adder.*") "")))) |