[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63400] [PATCH v2 2/2] gnu: vulkan-loader: Re-enable tests on AArch6
From: |
Simon South |
Subject: |
[bug#63400] [PATCH v2 2/2] gnu: vulkan-loader: Re-enable tests on AArch64. |
Date: |
Sun, 4 Jun 2023 09:11:08 -0400 |
* gnu/packages/vulkan.scm (vulkan-loader)[arguments]<#:tests?>: Enable on
AArch64.
---
gnu/packages/vulkan.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm
index 790a1c7c07..fd6bd57602 100644
--- a/gnu/packages/vulkan.scm
+++ b/gnu/packages/vulkan.scm
@@ -233,7 +233,7 @@ (define-public vulkan-loader
;; 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?))
+ (or (target-aarch64?) (target-x86?)))
#:configure-flags
#~(list (string-append "-DVULKAN_HEADERS_INSTALL_DIR="
(dirname (dirname
--
2.39.1