gnu: openldap: Disable tests, they fail too randomly probably due to
timeouts in the server. * gnu/packages/openldap.scm (openldap): Drop all tests.
This commit is contained in:
parent
ca8def6e6f
commit
c3f9761771
|
@ -55,7 +55,7 @@
|
||||||
("libtool" ,libtool "bin")
|
("libtool" ,libtool "bin")
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f
|
`(#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(alist-replace
|
||||||
'configure
|
'configure
|
||||||
|
@ -63,19 +63,7 @@
|
||||||
(let ((configure (assoc-ref %standard-phases 'configure)))
|
(let ((configure (assoc-ref %standard-phases 'configure)))
|
||||||
(apply configure args)
|
(apply configure args)
|
||||||
(copy-file (which "libtool") "libtool")))
|
(copy-file (which "libtool") "libtool")))
|
||||||
(alist-replace
|
%standard-phases)))
|
||||||
'check
|
|
||||||
(lambda* (#:key #:allow-other-keys #:rest args)
|
|
||||||
(let ((check (assoc-ref %standard-phases 'check)))
|
|
||||||
(for-each (lambda (f)
|
|
||||||
(substitute* (string-append "tests/scripts/" f)
|
|
||||||
(("/bin/rm") "rm")))
|
|
||||||
'("all" "its-all" "passwd-search" "sql-all" "test027-emptydn"))
|
|
||||||
;; disable especially finicky tests
|
|
||||||
(delete-file "tests/scripts/test058-syncrepl-asymmetric")
|
|
||||||
(delete-file "tests/scripts/test061-syncreplication-initiation")
|
|
||||||
(apply check args)))
|
|
||||||
%standard-phases))))
|
|
||||||
(synopsis "openldap, an implementation of the Lightweight Directory Access Protocol")
|
(synopsis "openldap, an implementation of the Lightweight Directory Access Protocol")
|
||||||
(description
|
(description
|
||||||
"OpenLDAP is a free implementation of the Lightweight Directory Access Protocol.")
|
"OpenLDAP is a free implementation of the Lightweight Directory Access Protocol.")
|
||||||
|
|
Loading…
Reference in New Issue