59e11dbf9f
Summary: I've refactored the integration test for HA so we can reuse the common parts like starting/stopping workers. I've also added a test that triggers the log compaction and it checks that the snapshot that has been transferred is the same as the origin one. Reviewers: ipaljak Reviewed By: ipaljak Subscribers: mferencevic, pullbot Differential Revision: https://phabricator.memgraph.io/D1847
7 lines
292 B
CMake
7 lines
292 B
CMake
set(target_name memgraph__integration__ha_basic)
|
|
set(tester_target_name ${target_name}__tester)
|
|
|
|
add_executable(${tester_target_name} tester.cpp)
|
|
set_target_properties(${tester_target_name} PROPERTIES OUTPUT_NAME tester)
|
|
target_link_libraries(${tester_target_name} mg-utils mg-communication)
|