mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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:
parent
998d89ba20
commit
dec270a7c8
1 changed files with 7 additions and 1 deletions
|
@ -12,6 +12,7 @@
|
|||
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||
;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org>
|
||||
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -559,7 +560,12 @@ (define-public jimtcl
|
|||
(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.
|
||||
|
|
Loading…
Reference in a new issue