diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-03-05 14:18:56 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-03-12 08:46:46 +0100 |
commit | 0a6ef96b13e478ec1a3a77633f1012c3700a7d2d (patch) | |
tree | 3de1c32a46d0d77afa665013043a010b9b1b33bc /gnu/packages | |
parent | 7001cc68b6d5785a8dd6aa202d4acbb2ea9364e5 (diff) | |
download | guix-0a6ef96b13e478ec1a3a77633f1012c3700a7d2d.tar.gz guix-0a6ef96b13e478ec1a3a77633f1012c3700a7d2d.zip |
gnu: tracker: Increase timeout multiplier.
One test fails due to timeout on CI, but succeeds on a strong enough machine
with little load.
* gnu/packages/gnome.scm (tracker)[#:test-options]: Double timeout multipliers.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 2f52203555..34758f2afc 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9679,8 +9679,8 @@ easy, safe, and automatic.") (list #:glib-or-gtk? #t #:test-options `(list ,@(if (target-riscv64?) - `("--timeout-multiplier" "5") - '())) + `("--timeout-multiplier" "10") + '("--timeout-multiplier" "2"))) #:configure-flags ;; Otherwise, the RUNPATH will lack the final path component. #~(list (string-append "-Dc_link_args=-Wl,-rpath=" |