efraim pushed a commit to branch master
in repository guix.

commit 43370c2db358b0eff117d0f957b19dd50d610db8
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Sun May 12 09:52:47 2024 +0300

    gnu: strongswan: Skip rsa test on i686-linux.
    
    * gnu/packages/vpn.scm (strongswan)[arguments]: Adjust custom
    'set-up-test-environment phase to skip the rsa tests on i686-linux.
    
    Change-Id: If4aff3f710f2eb4e0dfbad58deb41838421db89f
---
 gnu/packages/vpn.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 88a82b6c00..e1d9657755 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -441,7 +441,7 @@ networks bypassing intermediate firewalls.")
              (setenv "TZDIR"
                      (search-input-directory inputs "share/zoneinfo"))
              ;; Speed-up the test suite on some of the architectures.
-             ,@(if (not (target-x86?))
+             ,@(if (not (target-x86-64?))
                    `((setenv "TESTS_SUITES_EXCLUDE" "rsa"))
                    '()))))
        #:configure-flags

Reply via email to