mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: libevent: Disable regress tests.
* gnu/packages/libevent.scm (libevent)[arguments]: Disable the 'regress' tests.
This commit is contained in:
parent
0611abff32
commit
f0ef7b47d3
1 changed files with 6 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -51,6 +52,9 @@ (define-public libevent
|
||||||
;; https://github.com/libevent/libevent/issues/452
|
;; https://github.com/libevent/libevent/issues/452
|
||||||
"libevent-2.1-skip-failing-test.patch"))))
|
"libevent-2.1-skip-failing-test.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
;; This skips some of the tests which fail on armhf and aarch64.
|
||||||
|
'(#:configure-flags '("--disable-libevent-regress")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python" ,python-2))) ; for 'event_rpcgen.py'
|
`(("python" ,python-2))) ; for 'event_rpcgen.py'
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -87,7 +91,8 @@ (define-public libevent-2.0
|
||||||
"libevent-2.0-CVE-2016-10195.patch"
|
"libevent-2.0-CVE-2016-10195.patch"
|
||||||
"libevent-2.0-CVE-2016-10196.patch"
|
"libevent-2.0-CVE-2016-10196.patch"
|
||||||
"libevent-2.0-CVE-2016-10197.patch"
|
"libevent-2.0-CVE-2016-10197.patch"
|
||||||
"libevent-2.0-evbuffer-add-use-last-with-datap.patch"))))))
|
"libevent-2.0-evbuffer-add-use-last-with-datap.patch"))))
|
||||||
|
(arguments '())))
|
||||||
|
|
||||||
(define-public libev
|
(define-public libev
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue