diff options
| author | Rodion Goritskov <rodion@goritskov.com> | 2026-08-27 00:18:23 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-08-28 17:20:46 +0200 |
| commit | 5f1213e4cd31bf85bcb987a3a7fe8200682241ef (patch) | |
| tree | 43980ed770156f97248749d540f2813805b60154 | |
| parent | 73c287df469f1a60ee3513d30e0d9ca0e02e3e35 (diff) | |
gnu: marble: Fix tests.
* gnu/packages/kde-education.scm (marble)[arguments]<#:test-exclude>:
Remove tests that no longer fail.
<#:phases>: Move check phase after install to make plugins available
for tests.
Signed-off-by: Andreas Enge <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/kde-education.scm | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/gnu/packages/kde-education.scm b/gnu/packages/kde-education.scm index 73051fea5ba..b5b2f322ec9 100644 --- a/gnu/packages/kde-education.scm +++ b/gnu/packages/kde-education.scm | |||
| @@ -384,17 +384,7 @@ to perform data analysis.") | |||
| 384 | (build-system qt-build-system) | 384 | (build-system qt-build-system) |
| 385 | (arguments | 385 | (arguments |
| 386 | (list | 386 | (list |
| 387 | #:test-exclude | 387 | #:test-exclude "MarbleRunnerManagerTest" |
| 388 | (string-append "(" | ||
| 389 | (string-join '("MarbleRunnerManagerTest" | ||
| 390 | "MarbleMapTest" | ||
| 391 | "MarbleWidgetTest" | ||
| 392 | "RenderPluginTest" | ||
| 393 | "AbstractDataPluginModelTest" | ||
| 394 | "AbstractDataPluginTest" | ||
| 395 | "AbstractFloatItemTest") | ||
| 396 | "|") | ||
| 397 | ")") | ||
| 398 | #:qtbase qtbase | 388 | #:qtbase qtbase |
| 399 | #:configure-flags | 389 | #:configure-flags |
| 400 | #~(list "-DBUILD_MARBLE_TOOLS=YES" ;file conversion tools | 390 | #~(list "-DBUILD_MARBLE_TOOLS=YES" ;file conversion tools |
| @@ -405,7 +395,12 @@ to perform data analysis.") | |||
| 405 | (lambda _ | 395 | (lambda _ |
| 406 | (substitute* "tools/vectorosm-tilecreator/autotests/CMakeLists.txt" | 396 | (substitute* "tools/vectorosm-tilecreator/autotests/CMakeLists.txt" |
| 407 | (("\\$<TARGET_FILE:osmconvert>") | 397 | (("\\$<TARGET_FILE:osmconvert>") |
| 408 | (which "osmconvert")))))))) | 398 | (which "osmconvert"))))) |
| 399 | ;; Some tests rely on plugins being installed, so | ||
| 400 | ;; check should be run after install. | ||
| 401 | (delete 'check) | ||
| 402 | (add-after 'install 'check | ||
| 403 | (assoc-ref %standard-phases 'check))))) | ||
| 409 | (native-inputs (list abseil-cpp | 404 | (native-inputs (list abseil-cpp |
| 410 | extra-cmake-modules | 405 | extra-cmake-modules |
| 411 | kdoctools | 406 | kdoctools |
