diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2014-12-05 00:57:03 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-05 09:32:16 +0100 |
commit | ee41f8d17bdc667fbbbc83deeff766faf048cf5e (patch) | |
tree | 1b04ae97699acf4d8ca4e8d03181b76094dc3796 /tests | |
parent | 88085fd52f886692c9cbb534166e68b791d5abce (diff) | |
download | sink-ee41f8d17bdc667fbbbc83deeff766faf048cf5e.tar.gz sink-ee41f8d17bdc667fbbbc83deeff766faf048cf5e.zip |
A storagetest including concurrency read test.
Conflicts:
tests/CMakeLists.txt
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 23776a1..1629acb 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -6,11 +6,12 @@ generate_flatbuffers(calendar) | |||
6 | macro(manual_tests) | 6 | macro(manual_tests) |
7 | foreach(_testname ${ARGN}) | 7 | foreach(_testname ${ARGN}) |
8 | add_executable(${_testname} ${_testname}.cpp) | 8 | add_executable(${_testname} ${_testname}.cpp) |
9 | qt5_use_modules(${_testname} Core Test) | 9 | qt5_use_modules(${_testname} Core Test Concurrent) |
10 | target_link_libraries(${_testname} akonadinextcommon) | 10 | target_link_libraries(${_testname} akonadinextcommon) |
11 | endforeach(_testname) | 11 | endforeach(_testname) |
12 | endmacro(manual_tests) | 12 | endmacro(manual_tests) |
13 | 13 | ||
14 | manual_tests ( | 14 | manual_tests ( |
15 | storagebenchmark | 15 | storagebenchmark |
16 | storagetest | ||
16 | ) | 17 | ) |