1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

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
This commit is contained in:
Christopher Baines 2025-04-27 11:47:59 +01:00
parent a6a6bd90d9
commit ba294c5e9c
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -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