[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/10: gnu: openssl: Skip time-dependent test.
From: |
guix-commits |
Subject: |
02/10: gnu: openssl: Skip time-dependent test. |
Date: |
Wed, 22 Jun 2022 06:36:07 -0400 (EDT) |
civodul pushed a commit to branch core-updates
in repository guix.
commit 6cd438c4c2beb016a821143cdfdd12892aa9fd5f
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Tue Jun 21 15:16:43 2022 +0200
gnu: openssl: Skip time-dependent test.
Fixes <https://issues.guix.gnu.org/56137>.
Reported by phodina <phodina@protonmail.com>.
* gnu/packages/tls.scm (openssl)[arguments]: Replace the 'check'
phase; this applies to both 1.1.1n and 3.0.3.
---
gnu/packages/tls.scm | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index bd1f010d0a..86dc249984 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -422,15 +422,20 @@ 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 (or (target-arm?)
- (target-riscv64?))
- #~((replace 'check
- (lambda* (#:key tests? test-target #:allow-other-keys)
- (when tests?
- (invoke "make" "TESTS=-test_afalg" test-target)))))
- #~())
+ (replace 'check
+ (lambda* (#:key tests? test-target #:allow-other-keys)
+ (when tests?
+ ;; '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.
+ ;;
+ ;; 'test_afalg' seems to be dependent on kernel features:
+ ;; <https://github.com/openssl/openssl/issues/12242>.
+ (invoke "make" test-target
+ #$(if (or (target-arm?) (target-riscv64?))
+ "TESTS=-test_afalg -tls_ssl_new"
+ "TESTS=-test_ssl_new")))))
(replace 'configure
(lambda* (#:key configure-flags #:allow-other-keys)
(let* ((out #$output)
- branch core-updates updated (04c716afa5 -> a589049e14), guix-commits, 2022/06/22
- 01/10: gnu: openssl@1: Update to 1.1.1n and remove replacement., guix-commits, 2022/06/22
- 06/10: gnu: sway: Update to 1.7., guix-commits, 2022/06/22
- 09/10: gnu: dwl: Update to 0.3.1., guix-commits, 2022/06/22
- 08/10: gnu: wlroots: Update to 0.15.1., guix-commits, 2022/06/22
- 02/10: gnu: openssl: Skip time-dependent test.,
guix-commits <=
- 07/10: gnu: hikari: Simplify inputs., guix-commits, 2022/06/22
- 03/10: gnu: mozjs: Keep only version 78., guix-commits, 2022/06/22
- 04/10: gnu: cagebreak: Update to 1.8.3., guix-commits, 2022/06/22
- 10/10: gnu: wayland: Update to 1.20.0., guix-commits, 2022/06/22
- 05/10: gnu: hikari: Update to 2.3.3., guix-commits, 2022/06/22