summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-12 11:19:35 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-26 19:55:45 +0200
commit84b709acb48c7d3177b628cdcca8ab9979945e5a (patch)
tree455bc949e15d582f314f1fda65d8d8506f90cd53
parent4a0a969e414a8b44d9dc43cdb9e9143d8547db40 (diff)
gnu: go-github-com-go-fed-httpsig: Skip one more test.
* gnu/packages/golang-web.scm (go-github-com-go-fed-httpsig) [arguments] <test-flags>: Skip one more failing test. Change-Id: I99d1b7e29a8157ef03881c661c60149c7497ebf3
-rw-r--r--gnu/packages/golang-web.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 897c2ca9b5..43086aaa92 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3282,8 +3282,14 @@ decompose request handling into many smaller layers.")
(arguments
(list
#:import-path "github.com/go-fed/httpsig"
- ;; algorithms_test.go:153: "sha1": got true, want false
- #:test-flags #~(list "-skip" "TestIsAvailable")))
+ #:test-flags
+ #~(list "-skip" (string-join
+ ;; algorithms_test.go:153: "sha1": got true, want false
+ (list "TestIsAvailable"
+ ;; "rsa_SHA3_224": expected error, got:
+ ;; %!s(<nil>)
+ "TestSignerSigns")
+ "|"))))
(propagated-inputs
(list go-golang-org-x-crypto))
(home-page "https://github.com/go-fed/httpsig")