gnu: go-github-com-go-stack-stack: Skip failing tests.

* gnu/packages/golang-xyz.scm (go-github-com-go-stack-stack)
[arguments]<test-flags>: Skip some failing tests.

Change-Id: Ibda14b48a98b1d4da50f22dc1c80a2fb647504ea
This commit is contained in:
Sharlatan Hellseher 2024-12-12 20:19:43 +00:00
parent f10be196b9
commit cb04b4d5c1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3821,7 +3821,13 @@ golang's database/sql package.")
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/go-stack/stack"))
#:import-path "github.com/go-stack/stack"
#:test-flags
#~(list "-skip" (string-join
(list "TestCallStackString"
"TestCallStackMarshalText"
"TestTrimRuntime")
"|"))))
(home-page "https://github.com/go-stack/stack")
(synopsis "Utilities to capture, manipulate, and format call stacks")
(description