mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: bear: Respect TESTS?.
* gnu/packages/build-tools.scm (bear)[arguments]: Accept and respect a TESTS? keyword in the 'check phase.
This commit is contained in:
parent
de01d08bdf
commit
9c426e19cf
1 changed files with 4 additions and 3 deletions
|
@ -123,10 +123,11 @@ (define-public bear
|
|||
(add-before 'check 'set-build-environment
|
||||
(lambda _
|
||||
(setenv "CC" "gcc")))
|
||||
;; TODO: Test Configuration is Incomplete
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "ctest"))))))
|
||||
;; TODO: Test configuration is incomplete.
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "ctest")))))))
|
||||
(inputs
|
||||
`(("c-ares" ,c-ares)
|
||||
("fmt" ,fmt)
|
||||
|
|
Loading…
Reference in a new issue