efraim pushed a commit to branch master
in repository guix.
commit acdf26f1c6d38634fb4717b5832707e6b6c3599b
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Feb 28 09:33:45 2024 +0200
gnu: gst-plugins-bad: Skip camerabin test on aarch64-linux.
* gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Adjust custom
'adjust-tests phase to skip the camerabin test on aarch64-linux.
Change-Id: Ic69a19252bee5e63ff94bc0d3159360937ee81c4
---
gnu/packages/gstreamer.scm | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 71f8e3453a..2be9f6b314 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 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2017, 2022-2024 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]>
@@ -800,19 +800,17 @@ model to base your own plug-in on, here it is.")
;; The 'elements_curlhttpsrc' test sometimes times out.
((".*'elements/curlhttpsrc\\.c'.*") "")
- ;; This test is flaky on at least some architectures.
- ;;
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1244
+ ;; TODO: Figure out why this test fails on riscv64-linux.
#$@(if (target-riscv64?)
- `((("'elements/camerabin\\.c'\\].*],")
- "'elements/camerabin.c'], true, ],")
- (("'elements/viewfinderbin\\.c'\\].*],")
- "'elements/viewfinderbin.c'], true, ],"))
- '())
+ `((("'elements/viewfinderbin\\.c'\\].*],")
+ "'elements/viewfinderbin.c'], true, ],"))
+ '())
- ;; This substitution is no longer effective and can be
removed.
+ ;; This test is flaky on at least some architectures.
+ ;;
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1244
#$@(if (member (%current-system)
- '("i686-linux" "aarch64-linux"
"riscv64-linux"))
- `((("'elements/camerabin\\.c'\\]\\],")
+ '("aarch64-linux" "riscv64-linux"))
+ `((("'elements/camerabin\\.c'\\].*],")
"'elements/camerabin.c'], true, ],"))
'())