diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-08-03 13:53:25 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-08-03 13:53:59 +0300 |
| commit | f21482e2074843f09e2f59ef732fe8518a64675b (patch) | |
| tree | d8fd20cd6c5a00cc52470b6215e7fda8ef4dfbb0 /gnu | |
| parent | 5c2ae7e277f541d4d481adc878289dca21458e4b (diff) | |
gnu: glib-networking: Skip tests on aarch64-linux.
* gnu/packages/gnome.scm (glib-networking)[arguments]: Skip tests when
building on aarch64-linux.
Change-Id: Iad9a844b26416b7efd8e5f7a70d56da23e4997ce
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4afbefe67e1..170faa80202 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5051,6 +5051,11 @@ indicators etc).") (base32 "17zhkf2pjwrghdgk5nhfvzqakb2xwk2jj19316xjr0s9n3djv3z4")))) (build-system meson-build-system) + (arguments + (list + ;; TODO: Figure out why some tests SIGABRT on aarch64-linux. + #:tests? (and (not (%current-target-system)) + (not (target-aarch64?))))) (native-inputs (list `(,glib "bin") ; for gio-querymodules pkg-config gettext-minimal)) |
