guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: gtk: Skip failing tests on aarch64-linux.


From: guix-commits
Subject: branch master updated: gnu: gtk: Skip failing tests on aarch64-linux.
Date: Sun, 31 Mar 2024 04:54:09 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 76ed1e886e gnu: gtk: Skip failing tests on aarch64-linux.
76ed1e886e is described below

commit 76ed1e886ea790fc8562b355a0768a0f04889abb
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Mar 31 10:58:40 2024 +0300

    gnu: gtk: Skip failing tests on aarch64-linux.
    
    * gnu/packages/gtk.scm (gtk)[arguments]: When building for aarch64-linux
    add a phase to skip a test which can't find the zink driver.
    
    Change-Id: I7b596309f1cbd555bd7ba889379d5b0bb245eabc
---
 gnu/packages/gtk.scm | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 9252315fd2..8fabd16222 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1163,6 +1163,17 @@ application suites.")
           (add-after 'unpack 'generate-gdk-pixbuf-loaders-cache-file
             (assoc-ref glib-or-gtk:%standard-phases
                        'generate-gdk-pixbuf-loaders-cache-file))
+          #$@(if (target-aarch64?)
+                 #~((add-after 'unpack 'skip-failing-test
+                      (lambda _
+                        ;; MESA: error: ZINK: failed to load libvulkan.so.1
+                        ;; libEGL warning: egl: failed to create dri2 screen
+                        ;; MESA: error: ZINK: failed to load libvulkan.so.1
+                        ;; glx: failed to create drisw screen
+                        ;; failed to load driver: zink
+                        (substitute* "testsuite/gsk/meson.build"
+                          ((".*big-checkerboard-scaled-down2',\n") "")))))
+                 #~())
           (add-after 'unpack 'patch-rst2man
             (lambda _
               (substitute* "docs/reference/gtk/meson.build"



reply via email to

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