mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: glib-networking: Skip flaky tests.
* gnu/packages/gnome.scm (glib-networking)[arguments]<#:phases>: Add 'mark-tests-for-exclusion phase. <#:test-options>: Exclude flaky tests. Change-Id: I535c57eb90e1629e9c1d4cb468da6c183e51bcf4
This commit is contained in:
parent
81884b098c
commit
1c3ed5f3ba
1 changed files with 16 additions and 1 deletions
|
@ -5055,7 +5055,22 @@ indicators etc).")
|
||||||
(list
|
(list
|
||||||
;; TODO: Figure out why some tests SIGABRT on aarch64-linux.
|
;; TODO: Figure out why some tests SIGABRT on aarch64-linux.
|
||||||
#:tests? (and (not (%current-target-system))
|
#:tests? (and (not (%current-target-system))
|
||||||
(not (target-aarch64?)))))
|
(not (target-aarch64?)))
|
||||||
|
;; Exclude flaky tests (see https://codeberg.org/guix/guix/issues/1377).
|
||||||
|
;; Meson cannot exclude individual tests so the test suite is added in the
|
||||||
|
;; phase below.
|
||||||
|
#:test-options #~(list "--no-suite" "connection")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'mark-tests-for-exclusion
|
||||||
|
(lambda _
|
||||||
|
;; The test names are programmatically generated in the meson
|
||||||
|
;; build file. The two failing tests are "connection-gnutls" and
|
||||||
|
;; "connection-gnutls-tls1.2" and share program[0] == "common",
|
||||||
|
;; so use that as the suite name.
|
||||||
|
(substitute* "tls/tests/meson.build"
|
||||||
|
(("test\\(([^)]*)\\)" _ args)
|
||||||
|
(string-append "test(" args ", suite: program[0])"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") ; for gio-querymodules
|
(list `(,glib "bin") ; for gio-querymodules
|
||||||
pkg-config gettext-minimal))
|
pkg-config gettext-minimal))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue