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:
parent
c5ef49a160
commit
199a1235bd
@ -380,6 +380,14 @@ OpenSSL for TARGET."
|
||||
#$(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)
|
||||
|
Loading…
Reference in New Issue
Block a user