efraim pushed a commit to branch mesa-updates
in repository guix.
commit bc71be1a1d1491087c2588ad7d3a12974c2f1403
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Nov 15 16:42:39 2023 +0200
gnu: curl: Skip failing test on arm machines.
* gnu/packages/curl.scm (curl)[arguments]: Adjust custom 'check phase to
skip a test on armhf-linux and aarch64-linux.
Change-Id: I26fcb8c911a412c9196b759caefb6a003a241b6b
---
gnu/packages/curl.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index 346bfc4e61..d94a0178af 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -129,7 +129,9 @@
"1")))
(arguments `("-C" "tests" "test"
,@make-flags
- ,(if #$(system-hurd?)
+ ,(if #$(or (system-hurd?)
+ (target-arm32?)
+ (target-aarch64?))
;; protocol FAIL
(string-append "TFLAGS=\"~1474 "
job-count "\"")