mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 02:07:56 +01:00
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
1 changed files with 8 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue