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
This commit is contained in:
Efraim Flashner 2023-11-15 16:42:39 +02:00
parent 92f113694f
commit bc71be1a1d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -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 "\"")