From 3dfb6df26fa673fe674cf331941506293008ca42 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 27 Aug 2024 14:02:27 +0100 Subject: [PATCH] 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 --- gnu/packages/golang-xyz.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 8217f4f5b0..796341a66b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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))