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 | |
| parent | 2c51202a2a803853cf9844c6169087628d098955 (diff) | |
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')
| -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 c3efa2895b1..9391b9f7047 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.") | |||
| 407 | #:phases | 407 | #:phases |
| 408 | #~(modify-phases %standard-phases | 408 | #~(modify-phases %standard-phases |
| 409 | #$@(if (target-aarch64?) | 409 | #$@(if (target-aarch64?) |
| 410 | ;; The 'log_process' test fails on aarch64-linux with a | ||
| 411 | ;; SIGinvalid error (see: | ||
| 412 | ;; https://bugs.libcamera.org/show_bug.cgi?id=173). | ||
| 413 | #~((add-after 'unpack 'disable-problematic-tests | 410 | #~((add-after 'unpack 'disable-problematic-tests |
| 414 | (lambda _ | 411 | (lambda _ |
| 412 | ;; The 'log_process' test fails on aarch64-linux with a | ||
| 413 | ;; SIGinvalid error (see: | ||
| 414 | ;; https://bugs.libcamera.org/show_bug.cgi?id=173). | ||
| 415 | (substitute* "test/log/meson.build" | 415 | (substitute* "test/log/meson.build" |
| 416 | ((".*'name': 'log_process'.*") | 416 | ((".*'name': 'log_process'.*") |
| 417 | "")) | ||
| 418 | ;; The 'file' test fails on aarch64-linux with SIGinvalid. | ||
| 419 | (substitute* "test/meson.build" | ||
| 420 | ((".*'name': 'file'.*") | ||
| 417 | ""))))) | 421 | ""))))) |
| 418 | #~()) | 422 | #~()) |
| 419 | (add-after 'install 'move-doc-and-gst | 423 | (add-after 'install 'move-doc-and-gst |
