guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 17521db03cade65d7893f6b2c1b576b2e1f188de
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 1 15:19:10 2026 +0100
gnu: go-github-com-fasthttp-router: Skip 4 tests.
* gnu/packages/golang-web.scm (go-github-com-fasthttp-router):
[arguments] <test-flags>: Skip 4 tests.
Change-Id: I0dca703e93b1bceec2d64160951449c405c50724
---
gnu/packages/golang-web.scm | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index debbdb84a9..c281324f60 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -6688,7 +6688,17 @@ building with WebAssembly.")
(build-system go-build-system)
(arguments
(list
- #:import-path "github.com/fasthttp/router"))
+ #:import-path "github.com/fasthttp/router"
+ #:test-flags
+ ;; router_test.go:107: return error error when reading request headers:
+ ;; missing required Host header in request. Buffer size=22, contents:
+ ;; "POST /foo HTTP/1.1\r\n\r\n"
+ #~(list "-skip" (string-join
+ (list "TestGroup"
+ "TestRouterServeFiles"
+ "TestRouterServeFS"
+ "TestRouterServeFilesCustom")
+ "|"))))
(propagated-inputs
(list go-github-com-savsgio-gotils
go-github-com-valyala-bytebufferpool