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:
Roman Scherer 2024-02-18 18:52:57 +01:00 committed by Ludovic Courtès
parent 2c51202a2a
commit cbfa5ed392
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -407,13 +407,17 @@ (define-public libcamera
#:phases
#~(modify-phases %standard-phases
#$@(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
(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"
((".*'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