gnu: go-github-com-fxamacker-cbor-v2: Disable tests on non 64bit architecture.

* gnu/packages/golang-web.scm (go-github-com-fxamacker-cbor-v2): Disable
tests on non 64bit architecture.

Change-Id: I41e207a77989d6b4faf883c14327e48fc303a027
This commit is contained in:
Sharlatan Hellseher 2024-08-27 14:02:27 +01:00
parent b09538f682
commit 3dfb6df26f
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5

View File

@ -2485,6 +2485,10 @@ quoting, commenting, and escaping.")
(build-system go-build-system)
(arguments
(list
;; XXX: Check if the most of the tests may be enabled:
;; src/github.com/fxamacker/cbor/v2/decode_test.go:328:9: cannot convert
;; 1000000000000 (untyped int constant) to type uint
#:tests? (target-64bit?)
#:import-path "github.com/fxamacker/cbor/v2"))
(propagated-inputs
(list go-github-com-x448-float16))