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
This commit is contained in:
Efraim Flashner 2025-08-03 13:53:25 +03:00
parent 5c2ae7e277
commit f21482e207
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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))