1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: go-github-com-prometheus-client-golang: Skip one more test.

* gnu/packages/prometheus.scm (go-github-com-prometheus-client-golang)
[arguments] <test-flags>: Skip one more test on non x86_64 systems.

Change-Id: Iac1f98a355b595a40fa61c5c4f479f8c11343d9b
This commit is contained in:
Sharlatan Hellseher 2025-02-03 13:48:00 +00:00
parent 5b9fa4a27c
commit 97fee203a5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -158,8 +158,14 @@ registry.")
;; (untyped int constant) as int value in map literal (overflows)
#:tests? (target-64bit?)
#:import-path "github.com/prometheus/client_golang"
;; Assertion fails in one test.
#:test-flags #~(list "-skip" "TestHandler")
#:test-flags
#~(list "-skip" (string-append
;; Test fails with Assertion error.
"TestHandler"
;; Test fails on aarch64-linux system.
#$@(if (not (target-x86-64?))
'("|TestProcessCollector")
'())))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'remove-examples-and-tutorials