diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2014-12-05 00:57:03 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2014-12-05 00:57:03 +0100 |
commit | 894698bd80007447950e045ab5beed8cb4a03f54 (patch) | |
tree | 877822e2e722f1e02236be6307a3396a312315cd /store/test/CMakeLists.txt | |
parent | 7073444c4f8405f0b8bb76ba9d58719ae2f1a776 (diff) | |
download | sink-894698bd80007447950e045ab5beed8cb4a03f54.tar.gz sink-894698bd80007447950e045ab5beed8cb4a03f54.zip |
A storagetest including concurrency read test.
Diffstat (limited to 'store/test/CMakeLists.txt')
-rw-r--r-- | store/test/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/store/test/CMakeLists.txt b/store/test/CMakeLists.txt index 4743cfb..c5c4fcb 100644 --- a/store/test/CMakeLists.txt +++ b/store/test/CMakeLists.txt | |||
@@ -11,11 +11,12 @@ generate_flatbuffers(calendar) | |||
11 | macro(manual_tests) | 11 | macro(manual_tests) |
12 | foreach(_testname ${ARGN}) | 12 | foreach(_testname ${ARGN}) |
13 | add_executable(${_testname} ${_testname}.cpp ${store_SRCS}) | 13 | add_executable(${_testname} ${_testname}.cpp ${store_SRCS}) |
14 | qt5_use_modules(${_testname} Core Test) | 14 | qt5_use_modules(${_testname} Core Test Concurrent) |
15 | target_link_libraries(${_testname} lmdb) | 15 | target_link_libraries(${_testname} lmdb) |
16 | endforeach(_testname) | 16 | endforeach(_testname) |
17 | endmacro(auto_tests) | 17 | endmacro(auto_tests) |
18 | 18 | ||
19 | manual_tests ( | 19 | manual_tests ( |
20 | storagebenchmark | 20 | storagebenchmark |
21 | storagetest | ||
21 | ) | 22 | ) |