gnu: jimtcl: Skip failing test for 32bit.

* gnu/packages/embedded.scm (jimtcl)[arguments]: When building for 32bit, skip
"file.test".
This commit is contained in:
Janneke Nieuwenhuizen 2023-06-17 11:01:10 +02:00
parent 998d89ba20
commit dec270a7c8
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -12,6 +12,7 @@
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org> ;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -559,7 +560,12 @@ (define-public jimtcl
(lambda _ (lambda _
;; XXX All but 1 SSL tests fail (tries connecting to Google ;; XXX All but 1 SSL tests fail (tries connecting to Google
;; servers). ;; 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)) (inputs (list openssl))
(native-inputs (native-inputs
;; For tests. ;; For tests.