gnu: openssl: Skip flaky test on arm hardware.

* gnu/packages/tls.scm (openssl)[arguments]: Add phase on armhf- and
aarch64-linux to skip a flaky test.
This commit is contained in:
Efraim Flashner 2021-08-18 10:58:03 +03:00
parent c5ef49a160
commit 199a1235bd
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -380,6 +380,14 @@ (define-public openssl
#$(target->openssl-target
(%current-target-system))))))
#~())
;; This test seems to be dependant on kernel features.
;; https://github.com/openssl/openssl/issues/12242
#$@(if (target-arm?)
#~((replace 'check
(lambda* (#:key tests? test-target #:allow-other-keys)
(when tests?
(invoke "make" "TESTS=-test_afalg" test-target)))))
#~())
(replace 'configure
(lambda* (#:key configure-flags #:allow-other-keys)
(let* ((out #$output)