From ba294c5e9c2722286b5f9de10d50c9fc57fb814f Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 27 Apr 2025 11:47:59 +0100 Subject: [PATCH] gnu: go-github-com-google-gofuzz: Skip tests on 32bit systems. As they seem to fail, and this package seems unmaintained. * gnu/packages/golang-check.scm (go-github-com-google-gofuzz)[arguments]: Skip tests on 32bit systems. Change-Id: I1f87d4e37199b7dcf9c88e05727d1e5defb85f60 --- gnu/packages/golang-check.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index b8fa1d4527..aa83ae4766 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -742,7 +742,9 @@ package, but can be used in other contexts too.") (build-system go-build-system) (arguments (list - #:import-path "github.com/google/gofuzz")) + #:import-path "github.com/google/gofuzz" + ;; Tests fail on 32bit + #:tests? (target-64bit?))) (home-page "https://github.com/google/gofuzz") (synopsis "Fuzz testing library for Go") (description