From kde-commits Wed Sep 11 19:28:13 2013 From: Sergio Martins Date: Wed, 11 Sep 2013 19:28:13 +0000 To: kde-commits Subject: [kdepimlibs] akonadi/calendar/tests: Fix running of isolated tests. Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=137892771423962 Git commit 3c859b94d3e930bcece6dd09dc86f8f97c512235 by Sergio Martins. Committed on 11/09/2013 at 19:25. Pushed by smartins into branch 'master'. Fix running of isolated tests. EXECUTABLE_OUTPUT_PATH was not set. Comment mailclienttest since it's failing. Uncommented incidencechangertest since it passes. Debugging the failling ones now. M +4 -2 akonadi/calendar/tests/CMakeLists.txt http://commits.kde.org/kdepimlibs/3c859b94d3e930bcece6dd09dc86f8f97c512235 diff --git a/akonadi/calendar/tests/CMakeLists.txt b/akonadi/calendar/tests= /CMakeLists.txt index bd2ca90..2ade22c 100644 --- a/akonadi/calendar/tests/CMakeLists.txt +++ b/akonadi/calendar/tests/CMakeLists.txt @@ -1,3 +1,5 @@ +set( EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR} ) + macro(add_akonadi_isolated_test _source) set(_test ${_source}) get_filename_component(_name ${_source} NAME_WE) @@ -41,8 +43,8 @@ macro(add_akonadi_isolated_test _source) endmacro(add_akonadi_isolated_test) = #add_akonadi_isolated_test( historytest.cpp ) -#add_akonadi_isolated_test( incidencechangertest.cpp ) -add_akonadi_isolated_test( mailclienttest.cpp ) +add_akonadi_isolated_test( incidencechangertest.cpp ) +#add_akonadi_isolated_test( mailclienttest.cpp ) #add_akonadi_isolated_test( calendarbasetest.cpp ) #add_akonadi_isolated_test( fetchjobcalendartest.cpp ) #add_akonadi_isolated_test( etmcalendartest.cpp )