diff options
author | Nikola <nikola@radojevic.rs> | 2024-08-18 13:59:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:47 +0200 |
commit | 20abe2a27f9025e1553bd64f604955ae0659852b (patch) | |
tree | 544a7f9a1bcc2568856c7ea86371f464f811cb52 | |
parent | a4f64b30b054b168a8affd5f246df338172a4da6 (diff) | |
download | guix-20abe2a27f9025e1553bd64f604955ae0659852b.tar.gz guix-20abe2a27f9025e1553bd64f604955ae0659852b.zip |
gnu: at-spi2-core: Remove unnecessary test timeout.
Guix provides its own superior-quality time-outs.
* gnu/packages/gtk.scm (at-spi2-core)[arguments]: Remove the
‘timeout’ argument from the test invocation.
Change-Id: Ic324c5992d48cafa4b6b9856b381d461083d8de2
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 6be87e9472..78572dde15 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -855,6 +855,9 @@ ever use this library.") (with-directory-excursion (string-append "../at-spi2-core-" #$version "") (invoke "dbus-run-session" "--" "ci/run-registryd-tests.sh") + (substitute* "tests/atspi/meson.build" + ;; Remove a timeout that caused aarch64 build failures. + ((", timeout: [0-9]+") "")) (substitute* "ci/run-tests.sh" (("ps auxwww") "") ;avoid a dependency on procps (("meson test -C _build") |