diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-01-08 11:36:30 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-01-08 11:53:01 +0200 |
commit | 9fe5b490df83ff32e2e0a604bf636eca48b9e240 (patch) | |
tree | 556c589f7534366393638a1d36e198cf54c8cca6 | |
parent | 5ee51394d727854b0b2cc6199929fa4292deb446 (diff) | |
download | guix-9fe5b490df83ff32e2e0a604bf636eca48b9e240.tar.gz |
gnu: tracker: Extend test timeout for riscv64-linux.
* gnu/packages/gnome.scm (tracker)[arguments]: Adjust test-options when building for riscv64-linux to add a timeout multiplier.
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index dfc092ce33..b5273b5c06 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9612,6 +9612,9 @@ easy, safe, and automatic.") (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t + #:test-options (list ,@(if (target-riscv64?) + `("--timeout-multiplier" "5") + '())) #:configure-flags ;; Otherwise, the RUNPATH will lack the final path component. (list (string-append "-Dc_link_args=-Wl,-rpath=" |