gnu: czmq: Re-enable previously failing tests, fixed in 4.2.1.

* gnu/packages/networking.scm (czmq)[phases]: Delete argument.
This commit is contained in:
Maxim Cournoyer 2021-06-05 20:40:23 -04:00
parent a18079288f
commit 544a980f3a
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1058,20 +1058,7 @@ (define-public czmq
"0fdclvd7fcwixp0k57ccv7d159v3slasyhvndxfn8n1a9hh0lwjx"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags '("--enable-drafts")
#:phases (modify-phases %standard-phases
(add-before 'check 'patch-tests
(lambda _
(substitute* "src/czmq_selftest.c"
;; Disable the zproc test, which fails on some hardware
;; (see: https://github.com/zeromq/czmq/issues/2007).
(("\\{ \"zproc\", zproc_test.*")
"")
;; Also disable the zarmour test, which fails as well
;; (see: https://github.com/zeromq/czmq/issues/2125).
(("\\{ \"zarmour\", zarmour_test.*")
""))
#t)))))
'(#:configure-flags '("--enable-drafts")))
(inputs
`(("zeromq" ,zeromq)))
(home-page "https://zeromq.org")