gnu: jimtcl: Skip failing test on all 32-bit architectures.

* gnu/packages/embedded.scm (jimtcl)[arguments]: Adjust custom phase
'delete-failing-tests/32bit to run for all 32-bit architectures.
This commit is contained in:
Efraim Flashner 2023-06-18 08:45:53 +03:00
parent 428b810ca2
commit 0d165fba93
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -561,7 +561,7 @@ (define-public jimtcl
;; XXX All but 1 SSL tests fail (tries connecting to Google
;; servers).
(delete-file "tests/ssl.test")))
#$@(if (target-x86-32?)
#$@(if (not (target-64bit?))
#~((add-after 'unpack 'delete-failing-tests/32bit
(lambda _
(delete-file "tests/file.test"))))