mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
distro: tcl, expect: Enable tests.
* distro/packages/tcl.scm (tcl, expect): Remove #:tests? argument; add #:test-target.
This commit is contained in:
parent
b22a12fda7
commit
eb6d676e2a
1 changed files with 8 additions and 2 deletions
|
@ -46,7 +46,11 @@ (define-public tcl
|
|||
;; Private headers are needed by Expect.
|
||||
(zero? (system* "make" "install-private-headers")))
|
||||
%standard-phases))
|
||||
#:tests? #f)) ; FIXME: use #:test-target "test"
|
||||
|
||||
;; XXX: There are a few test failures (related to HTTP, most
|
||||
;; likely related to name resolution), but that doesn't cause
|
||||
;; `make' to fail.
|
||||
#:test-target "test"))
|
||||
(home-page "http://www.tcl.tk/")
|
||||
(synopsis "The Tcl scripting language")
|
||||
(description "The Tcl (Tool Command Language) scripting language.")
|
||||
|
@ -83,7 +87,9 @@ (define-public expect
|
|||
"/include")
|
||||
(string-append "--exec-prefix="
|
||||
(assoc-ref %outputs "out")))
|
||||
#:tests? #f)) ; FIXME: use #:test-target "test"
|
||||
|
||||
;; FIXME: There are test failures.
|
||||
#:test-target "test"))
|
||||
(home-page "http://expect.nist.gov/")
|
||||
(synopsis
|
||||
"A tool for automating interactive applications")
|
||||
|
|
Loading…
Reference in a new issue