From 732861dda9c466841a09329a0b2c992f2b78c40a Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Tue, 21 Jan 2020 23:15:23 +0100 Subject: [PATCH] Fix missing link libraries. See These are only actually missing if the libraries reside in different prefixes, as it is the case in Guix or Nix. --- src/ksieveui/autocreatescripts/tests/CMakeLists.txt | 2 ++ src/ksieveui/scriptsparsing/autotests/CMakeLists.txt | 2 +- src/ksieveui/scriptsparsing/tests/CMakeLists.txt | 8 ++++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/ksieveui/autocreatescripts/tests/CMakeLists.txt b/src/ksieveui/autocreatescripts/tests/CMakeLists.txt index 8a482b4..c43216c 100644 --- a/src/ksieveui/autocreatescripts/tests/CMakeLists.txt +++ b/src/ksieveui/autocreatescripts/tests/CMakeLists.txt @@ -15,6 +16,7 @@ set(parsingscript_gui_SRCS parsingscript_gui.cpp ../../tests/capability.cpp) add_executable(parsingscript_gui ${parsingscript_gui_SRCS}) target_link_libraries(parsingscript_gui KF5::KIOCore + KF5::SyntaxHighlighting KF5::KSieveUi KF5::KSieve KF5::PimCommon diff --git a/src/ksieveui/scriptsparsing/autotests/CMakeLists.txt b/src/ksieveui/scriptsparsing/autotests/CMakeLists.txt index e41a74e..31703ef 100644 --- a/src/ksieveui/scriptsparsing/autotests/CMakeLists.txt +++ b/src/ksieveui/scriptsparsing/autotests/CMakeLists.txt @@ -5,7 +5,7 @@ macro(add_sieveeditor_xmlprintingscriptbuilding _source _extrasource) ecm_add_test(${_test} TEST_NAME ${_name} NAME_PREFIX "sieveeditor-xmlprintingscriptbuilding-" - LINK_LIBRARIES Qt5::Test KF5::I18n KF5::KSieveUi + LINK_LIBRARIES Qt5::Test KF5::I18n KF5::KSieveUi KF5::SyntaxHighlighting ) endmacro() add_sieveeditor_xmlprintingscriptbuilding(xmlprintingscriptbuildertest.cpp "" "") diff --git a/src/ksieveui/scriptsparsing/tests/CMakeLists.txt b/src/ksieveui/scriptsparsing/tests/CMakeLists.txt index a252039..99a1aaa 100644 --- a/src/ksieveui/scriptsparsing/tests/CMakeLists.txt +++ b/src/ksieveui/scriptsparsing/tests/CMakeLists.txt @@ -9,5 +9,9 @@ set(xmlsieveparsing_SRCS ) add_executable(xmlsieveparsing ${xmlsieveparsing_SRCS} ) -target_link_libraries(xmlsieveparsing KF5::KSieveUi KF5::KSieve KF5::I18n) - +target_link_libraries(xmlsieveparsing + KF5::KSieveUi + KF5::SyntaxHighlighting + KF5::KSieve + KF5::I18n +) -- 2.21.1 Author 2023-11-05tests: Honor system and target when lowering <system-test>....* gnu/tests.scm (compile-system-test): Wrap ‘system-test-value’ call in ‘mparameterize’. Change-Id: I4be28913a86f43059b0886ad2fcf81a9c699b730 Ludovic Courtès 2023-04-21tests: Fork and exec a new Guile for the marionette REPL....By merely forking PID 1, details from PID 1 (shepherd) would leak into the marionette process, such as the set of modules in scope and state inherited from the shepherd process (<service> instances, fibers, etc.). Running a fresh Guile instance avoids that. * gnu/tests.scm (marionette-program): New procedure. (marionette-shepherd-service): Change 'start' to use 'make-forkexec-constructor', and run the result of 'marionette-program'. Ludovic Courtès 2022-05-18services: Add more description fields....* gnu/services.scm (simple-service): Add 'description' field. * gnu/services/base.scm (udev-rules-service): Likewise. * gnu/system/install.scm (configuration-template-service-type): Likewise. * gnu/tests.scm (marionette-service-type): Likewise. Ludovic Courtès