mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: kcoreaddons: Enable test-suite.
Enable running the tests and blacklist the one failing test. * gnu/package/kde-frameworks.scm(kcoreaddons)[arguments] <#:tests?>: Remove. <#:phases>: Add phase 'blacklist-failing-test.
This commit is contained in:
parent
22fe911061
commit
2d4589ffb9
1 changed files with 9 additions and 2 deletions
|
@ -567,9 +567,16 @@ (define-public kcoreaddons
|
|||
(inputs
|
||||
`(("qtbase" ,qtbase)))
|
||||
(arguments
|
||||
`(#:tests? #f ; FIXME: Test failure caused by stout/stderr being interleaved.
|
||||
#:phases
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'blacklist-failing-test
|
||||
(lambda _
|
||||
;; Blacklist a failing test-function. FIXME: Make it pass.
|
||||
;; Test failure caused by stout/stderr being interleaved.
|
||||
(with-output-to-file "autotests/BLACKLIST"
|
||||
(lambda _
|
||||
(display "[test_channels]\n*\n")))
|
||||
#t))
|
||||
(add-before 'check 'check-setup
|
||||
(lambda _
|
||||
(setenv "HOME" (getcwd))
|
||||
|
|
Loading…
Reference in a new issue