guix_mirror_bot pushed a commit to branch go-team in repository guix. commit ef92bddca03d0673154c028e61f7812d903f5b14 Author: Sharlatan Hellseher <sharlata...@gmail.com> 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 c86d0eb563..0a54790373 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16246,7 +16246,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")