gnu: go-1.17: Skip tests on riscv64-linux.

* gnu/packages/golang.scm (go-1.17)[arguments]: When building for
riscv64-linux skip the test suite.
This commit is contained in:
Efraim Flashner 2023-02-13 16:31:34 +02:00
parent 455ecb5cbe
commit 024a8b3995
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -651,7 +651,7 @@ (define-public go-1.17
(guix build utils))
;; TODO: Disable the test(s) in misc/cgo/test/cgo_test.go
;; that cause segfaults in the test suite.
#:tests? ,(not (target-aarch64?))
#:tests? ,(not (or (target-aarch64?) (target-riscv64?)))
#:phases
(modify-phases %standard-phases
(replace 'configure