guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 74f3801df7d8d8b3ebba848c18dd07a10b20d103
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 12 19:24:55 2025 +0100
gnu: go-github-com-segmentio-encoding: Skip 2 more tests.
* gnu/packages/golang-xyz.scm (go-github-com-segmentio-encoding)
[arguments] <test-flags>: Skip 2 more failing tests.
Change-Id: I133809f9d21bfbed53ef83cdbd43e197620273d0
---
gnu/packages/golang-xyz.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 71f622cff1..48aaa3aec4 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17438,7 +17438,13 @@ and branchless algorithms shine.")
#:go go-1.23
#:skip-build? #t
#:import-path "github.com/segmentio/encoding"
- #:test-flags #~(list "-skip" "TestUnmarshalFixture|TestDecodeFixture")))
+ #:test-flags
+ #~(list "-skip" (string-join
+ (list "TestCodec/string#07"
+ "TestCodec/string#08"
+ "TestDecodeFixture"
+ "TestUnmarshalFixture")
+ "|"))))
(propagated-inputs
(list go-github-com-segmentio-asm))
(home-page "https://github.com/segmentio/encoding")