diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-10 18:36:48 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-11 21:42:48 +0100 |
| commit | 9fe1876e17618c118baf7f1d47ee31efc549ea7f (patch) | |
| tree | 4966d4bfab60bf95ca966967add63043100f2c5d /gnu/packages/ipfs.scm | |
| parent | b2e8540b7a18e9dda2f392ea8352d34f6f26c924 (diff) | |
gnu: go-github-com-ipfs-go-ipfs-pq: Skip one test.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipfs-pq) [arguments]
<test-flags>: Skip one failing test.
Change-Id: Ib8840bbcbe7a3295afb7b52de3aeb8d1ce5f4b0d
Diffstat (limited to 'gnu/packages/ipfs.scm')
| -rw-r--r-- | gnu/packages/ipfs.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 2558eae607b..694e5dca0d8 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -1017,7 +1017,10 @@ but returns nil values to every request.") (build-system go-build-system) (arguments (list - #:import-path "github.com/ipfs/go-ipfs-pq")) + #:import-path "github.com/ipfs/go-ipfs-pq" + ;; By using Go version higher than 1.21 one test keep failing with + ;; error: the values were not returned in sorted order. + #:test-flags #~(list "-skip" "TestCorrectnessOfPop"))) (home-page "https://github.com/ipfs/go-ipfs-pq") (synopsis "Priority queue used by go-ipfs") (description "Package pq implements a priority queue.") |
