mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 06:20:18 +01:00
gnu: gwenview: Break disabled tests into a list.
* gnu/packages/kde.scm (gwenview) [arguments]: Refactor check phase to be more readable. Change-Id: I29a06c828adacd25e6d6d734d4b2c0a17d437230
This commit is contained in:
parent
2d613a1e8d
commit
1757b5bc3c
1 changed files with 11 additions and 2 deletions
|
@ -249,9 +249,18 @@ browser for easy news reading.")
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "ctest" "-E"
|
(invoke "ctest" "-E"
|
||||||
"(placetreemodeltest|historymodeltest|contextmanagertest|urlutilstest)")))))))
|
(string-append
|
||||||
|
"("
|
||||||
|
(string-join '("placetreemodeltest"
|
||||||
|
"historymodeltest"
|
||||||
|
"contextmanagertest"
|
||||||
|
"urlutilstest")
|
||||||
|
"|")
|
||||||
|
")"))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list extra-cmake-modules kdoctools pkg-config))
|
(list extra-cmake-modules
|
||||||
|
kdoctools
|
||||||
|
pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list baloo
|
(list baloo
|
||||||
cfitsio
|
cfitsio
|
||||||
|
|
Loading…
Add table
Reference in a new issue