guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates-frozen updated: gnu: openssl: Skip flaky test on arm


From: guix-commits
Subject: branch core-updates-frozen updated: gnu: openssl: Skip flaky test on arm hardware.
Date: Wed, 18 Aug 2021 04:11:37 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch core-updates-frozen
in repository guix.

The following commit(s) were added to refs/heads/core-updates-frozen by this 
push:
     new 199a123  gnu: openssl: Skip flaky test on arm hardware.
199a123 is described below

commit 199a1235bd331b9202b4f7b404cfd66c2d33f7cd
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Aug 18 10:58:03 2021 +0300

    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.
---
 gnu/packages/tls.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 4b8df04..277d79e 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]