summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-12 19:24:55 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-26 19:55:47 +0200
commite81b6b10aa7b22532bbb4fa34faec93e1950c5fe (patch)
treed5fd5f2ca7c4c763aa6a5f051b263fe01797a9c1
parent452e983e0311d2d4d834354791f1be13353c0657 (diff)
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
-rw-r--r--gnu/packages/golang-xyz.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index dc1ba4816a..9924e4aa22 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17356,7 +17356,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")