1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00
falkonOfficial/autotests/CMakeLists.txt

31 lines
782 B
CMake
Raw Normal View History

include(ECMMarkAsTest)
set(falkon_autotests_SRCS )
2018-01-29 00:20:28 +01:00
qt5_add_resources(falkon_autotests_SRCS autotests.qrc)
macro(falkon_tests)
foreach(_testname ${ARGN})
add_executable(${_testname} ${_testname}.cpp ${falkon_autotests_SRCS})
target_link_libraries(${_testname} Qt5::Test FalkonPrivate)
add_test(NAME falkon-${_testname} COMMAND ${_testname})
ecm_mark_as_test(${_testname})
set_tests_properties(falkon-${_testname} PROPERTIES RUN_SERIAL TRUE)
endforeach(_testname)
endmacro()
falkon_tests(
qztoolstest
2018-01-27 09:03:18 +01:00
cookiestest
adblocktest
updatertest
2018-01-27 09:57:47 +01:00
locationbartest
2018-01-29 00:20:28 +01:00
webviewtest
)
set(falkon_autotests_SRCS passwordbackendtest.cpp)
falkon_tests(
databasepasswordbackendtest
databaseencryptedpasswordbackendtest
)