8d934ed801
Summary: The raft implementation has been stale for a while now. It doesn't compile, nor uses Cap'n Proto for serialization. In the future we would probably rewrite it, so it doesn't need to be part of the repo at this moment. Reviewers: mferencevic, mtomic, buda Reviewed By: mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1513
30 lines
681 B
CMake
30 lines
681 B
CMake
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/test_results/unit)
|
|
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/test_results/benchmark)
|
|
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/test_results/property_based)
|
|
|
|
include_directories(${GTEST_INCLUDE_DIR})
|
|
|
|
# benchmark test binaries
|
|
add_subdirectory(benchmark)
|
|
|
|
# macro_benchmark test binaries
|
|
add_subdirectory(macro_benchmark)
|
|
|
|
# stress test binaries
|
|
add_subdirectory(stress)
|
|
|
|
# concurrent test binaries
|
|
add_subdirectory(concurrent)
|
|
|
|
# manual test binaries
|
|
add_subdirectory(manual)
|
|
|
|
# unit test binaries
|
|
add_subdirectory(unit)
|
|
|
|
# property based test binaries
|
|
add_subdirectory(property_based)
|
|
|
|
# integration test binaries
|
|
add_subdirectory(integration)
|