mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: go-github-com-valyala-fasthttp: Skip tests with gccgo.
* gnu/packages/golang.scm (go-github-com-valyala-fasthttp)[arguments]: Don't run the test suite when building with gccgo.
This commit is contained in:
parent
e5fca82414
commit
932edeb3a0
1 changed files with 10 additions and 1 deletions
|
@ -9150,7 +9150,16 @@ (define-public go-github-com-valyala-fasthttp
|
|||
(base32 "12qwx0yk7wjj25v4fswgmj28r69gk94kqdmzavca8k9f0yznniz1"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/valyala/fasthttp"))
|
||||
(list
|
||||
#:import-path "github.com/valyala/fasthttp"
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key inputs #:allow-other-keys #:rest args)
|
||||
(unless
|
||||
;; Tests hang forever with gccgo.
|
||||
(false-if-exception (search-input-file inputs "/bin/gccgo"))
|
||||
(apply (assoc-ref %standard-phases 'check) args)))))))
|
||||
(propagated-inputs
|
||||
(list go-golang-org-x-sys
|
||||
go-golang-org-x-net
|
||||
|
|
Loading…
Reference in a new issue