guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: gdk-pixbuf: Only extend the test timeout on some architectur


From: guix-commits
Subject: 02/02: gnu: gdk-pixbuf: Only extend the test timeout on some architectures.
Date: Wed, 12 Dec 2018 05:23:29 -0500 (EST)

efraim pushed a commit to branch staging
in repository guix.

commit 56a88478b908110b513f8c9c767c32facf1b202d
Author: Efraim Flashner <address@hidden>
Date:   Wed Dec 12 12:22:29 2018 +0200

    gnu: gdk-pixbuf: Only extend the test timeout on some architectures.
    
    * gnu/packages/gtk.scm (gdk-pixbuf)[arguments]: Remove substitution
    extending test timeout to 1800 seconds. Replace check on armhf-linux
    and aarch64-linux to use 'timeout-multiplier' on the test suite.
---
 gnu/packages/gtk.scm | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 0f527e0..9f51f0d 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -76,7 +76,9 @@
   #:use-module (gnu packages cups)
   #:use-module (gnu packages xml)
   #:use-module (gnu packages xorg)
-  #:use-module (gnu packages xdisorg))
+  #:use-module (gnu packages xdisorg)
+  #:use-module (srfi srfi-1)
+  #:use-module (srfi srfi-26))
 
 (define-public atk
   (package
@@ -471,12 +473,15 @@ highlighting and other features typical of a source code 
editor.")
              ;; ERROR:pixbuf-jpeg.c:74:test_type9_rotation_exif_tag:
              ;; assertion failed (error == NULL): Data differ
              ;; (gdk-pixbuf-error-quark, 0)
-             ((".*'pixbuf-jpeg'.*") "")
-             ;; Extend the timeout of the test suite.
-             ;; TODO: Check upstreaming effort:
-             ;; https://gitlab.gnome.org/GNOME/gdk-pixbuf/merge_requests/21
-             (("300") "1800"))
+             ((".*'pixbuf-jpeg'.*") ""))
            #t))
+        ;; The slow tests take longer than the specified timeout.
+        ,@(if (any (cute string=? <> (%current-system))
+                   '("armhf-linux" "aarch64-linux"))
+            '((replace 'check
+              (lambda _
+                (invoke "meson" "test" "--timeout-multiplier" "5"))))
+            '())
         (add-before 'configure 'aid-install-script
           (lambda* (#:key outputs #:allow-other-keys)
             ;; "build-aux/post-install.sh" invokes `gdk-pixbuf-query-loaders`



reply via email to

[Prev in Thread] Current Thread [Next in Thread]