guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: vulkan-loader: Limit tests to x86_64 and i68


From: guix-commits
Subject: branch master updated: gnu: vulkan-loader: Limit tests to x86_64 and i686.
Date: Mon, 15 May 2023 10:09:19 -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 6e38ec447f gnu: vulkan-loader: Limit tests to x86_64 and i686.
6e38ec447f is described below

commit 6e38ec447f98383e0722ac300734f8d7c8c5c7b0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon May 15 17:07:44 2023 +0300

    gnu: vulkan-loader: Limit tests to x86_64 and i686.
    
    * gnu/packages/vulkan.scm (vulkan-loader)[arguments]: Only run the tests
    when building on x86_64-linux or i686-linux.
---
 gnu/packages/vulkan.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm
index b0d968938b..1d2e58f1d4 100644
--- a/gnu/packages/vulkan.scm
+++ b/gnu/packages/vulkan.scm
@@ -228,8 +228,10 @@ interpretation of the specifications for these languages.")
     (build-system cmake-build-system)
     (arguments
      (list
-      #:tests? (not (or (%current-target-system)
-                        (target-riscv64?)))
+      ;; As many as 23 tests are expected to fail per architecture.
+      ;; Limit the tests to those architectures tested upstream.
+      #:tests? (and (%current-system)
+                    (target-x86?))
       #:configure-flags
       #~(list (string-append "-DVULKAN_HEADERS_INSTALL_DIR="
                              (dirname (dirname



reply via email to

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