guix_mirror_bot pushed a commit to branch crypto-team
in repository guix.
commit 1a195f14ed77f7b0e58037c1e3943d2d33338328
Author: Andreas Enge <[email protected]>
AuthorDate: Tue Feb 17 23:06:11 2026 +0100
gnu: openssl-1.1: Re-enable tls_ssl_new test.
* gnu/packages/tls.scm (openssl-1.1)[make-flags]: Do not disable
tls_ssl_new.
Change-Id: I95e6ef5906f7477f0ac6bfcd685a69229eb1a54d
---
gnu/packages/tls.scm | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 08385c9810..98f1298643 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -452,14 +452,11 @@ OpenSSL for TARGET."
(arguments
(list
#:make-flags
- ;; 'test_ssl_new.t' in 1.1.1n and 3.0.3 fails due to an expired
- ;; certificate: <https://github.com/openssl/openssl/issues/18441>. Skip
- ;; it.
- #~(list #$@(if (or (target-arm?) (target-riscv64?))
- ;; 'test_afalg' seems to be dependent on kernel features:
- ;; <https://github.com/openssl/openssl/issues/12242>.
- #~("TESTS=-test_afalg -tls_ssl_new")
- #~("TESTS=-test_ssl_new")))
+ (if (or (target-arm?) (target-riscv64?))
+ ;; 'test_afalg' seems to be dependent on kernel features:
+ ;; <https://github.com/openssl/openssl/issues/12242>.
+ #~(list "TESTS=-test_afalg")
+ #~(list))
#:test-target "test"
;; Changes to OpenSSL sometimes cause Perl to "sneak in" to the closure,
;; so we explicitly disallow it here.