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

janneke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new dec270a7c8 gnu: jimtcl: Skip failing test for 32bit.
dec270a7c8 is described below

commit dec270a7c86daf1ab77ea438b9613fd99ec404a0
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sat Jun 17 11:01:10 2023 +0200

    gnu: jimtcl: Skip failing test for 32bit.
    
    * gnu/packages/embedded.scm (jimtcl)[arguments]: When building for 32bit, 
skip
    "file.test".
---
 gnu/packages/embedded.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 215007dd31..567fee548b 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2021 Morgan Smith <[email protected]>
 ;;; Copyright © 2022 Mathieu Othacehe <[email protected]>
 ;;; Copyright © 2022 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2023 Janneke Nieuwenhuizen <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -559,7 +560,12 @@ SEGGER J-Link and compatible devices.")
                  (lambda _
                    ;; XXX All but 1 SSL tests fail (tries connecting to Google
                    ;; servers).
-                   (delete-file "tests/ssl.test"))))))
+                   (delete-file "tests/ssl.test")))
+               #$@(if (target-x86-32?)
+                      #~((add-after 'unpack 'delete-failing-tests/32bit
+                           (lambda _
+                             (delete-file "tests/file.test"))))
+                      #~()))))
     (inputs (list openssl))
     (native-inputs
      ;; For tests.

Reply via email to