guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 1163a2b3b0f8cf256b87b52ca6c84ae6a332aef2
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Aug 3 12:33:16 2025 +0300

    gnu: tracker: Extend test timeout on aarch64-linux.
    
    * gnu/packages/gnome.scm (tracker)[arguments]: Adjust the test-options
    when building for aarch64-linux to use a longer timeout multiplier.
    
    Change-Id: I4a9de022194067b4c7c2ca547fb8cc8d373727a8
---
 gnu/packages/gnome.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4d178e5a88..4afbefe67e 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -11,7 +11,7 @@
 ;;; Copyright © 2015-2020, 2023, 2024 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2015, 2016, 2017, 2018, 2021 Mark H Weaver <[email protected]>
 ;;; Copyright © 2015 David Thompson <[email protected]>
-;;; Copyright © 2015-2024 Efraim Flashner <[email protected]>
+;;; Copyright © 2015-2025 Efraim Flashner <[email protected]>
 ;;; Copyright © 2016, 2017, 2018 Rene Saavedra <[email protected]>
 ;;; Copyright © 2016 Jochem Raat <[email protected]>
 ;;; Copyright © 2016, 2017, 2019 Kei Kebreau <[email protected]>
@@ -9851,7 +9851,8 @@ easy, safe, and automatic.")
     (arguments
      (list
       #:glib-or-gtk? #t
-      #:test-options `(list ,@(if (target-riscv64?)
+      #:test-options `(list ,@(if (or (target-riscv64?)
+                                      (target-aarch64?))
                                   `("--timeout-multiplier" "10")
                                   '("--timeout-multiplier" "2")))
       #:configure-flags

Reply via email to