a166c613ec
Summary: The directory was never actually copied on apollo, so tests weren't even doing anything... Also remove fswatcher unit test, it should be rewritten correctly. Reviewers: mislav.bradac, mferencevic, buda Reviewed By: mferencevic Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1108
30 lines
674 B
CMake
30 lines
674 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)
|
|
|
|
# raft binaries
|
|
add_subdirectory(distributed/raft)
|