diff options
author | Roman Scherer <roman@burningswell.com> | 2024-02-18 18:52:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:48 +0200 |
commit | cbfa5ed392828f1d7ccd0a9cc272baf4a4807f92 (patch) | |
tree | 368595047bb866edd49d47dc14f8cbe48859ff35 /gnu/packages | |
parent | 2c51202a2a803853cf9844c6169087628d098955 (diff) | |
download | guix-cbfa5ed392828f1d7ccd0a9cc272baf4a4807f92.tar guix-cbfa5ed392828f1d7ccd0a9cc272baf4a4807f92.tar.gz |
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>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/networking.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index c3efa2895b..9391b9f704 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -407,13 +407,17 @@ them in order to efficiently transfer a minimal amount of data.") #: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 |