mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libcamera: Disable failing file test on aarch64.
* gnu/packages/networking.scm (libcamera): Disable failing file test on aarch64. Change-Id: Ie3b98a3610df78def46196c05fa823f0cd878926 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
2c51202a2a
commit
cbfa5ed392
1 changed files with 7 additions and 3 deletions
|
@ -407,13 +407,17 @@ them in order to efficiently transfer a minimal amount of data.")
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
#$@(if (target-aarch64?)
|
#$@(if (target-aarch64?)
|
||||||
;; The 'log_process' test fails on aarch64-linux with a
|
|
||||||
;; SIGinvalid error (see:
|
|
||||||
;; https://bugs.libcamera.org/show_bug.cgi?id=173).
|
|
||||||
#~((add-after 'unpack 'disable-problematic-tests
|
#~((add-after 'unpack 'disable-problematic-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
|
;; The 'log_process' test fails on aarch64-linux with a
|
||||||
|
;; SIGinvalid error (see:
|
||||||
|
;; https://bugs.libcamera.org/show_bug.cgi?id=173).
|
||||||
(substitute* "test/log/meson.build"
|
(substitute* "test/log/meson.build"
|
||||||
((".*'name': 'log_process'.*")
|
((".*'name': 'log_process'.*")
|
||||||
|
""))
|
||||||
|
;; The 'file' test fails on aarch64-linux with SIGinvalid.
|
||||||
|
(substitute* "test/meson.build"
|
||||||
|
((".*'name': 'file'.*")
|
||||||
"")))))
|
"")))))
|
||||||
#~())
|
#~())
|
||||||
(add-after 'install 'move-doc-and-gst
|
(add-after 'install 'move-doc-and-gst
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue