mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05: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 @@ (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
|
||||
|
|
Loading…
Reference in a new issue