memgraph/tests/CMakeLists.txt
Matej Ferencevic 44821a918c Initial implementation of telemetry
Summary:
Add telemetry to main memgraph binary

Add resource usage collector

Add telemetry flag

Change telemetry collector logic

Fix utils compilation

Add timestamp

Add first version of interactive test

Started working on test runner

Implement all tests

Flake8 on runner.py

Integrate test with Apollo

Add TODO

Reviewers: buda, teon.banek

Reviewed By: buda, teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1419
2018-06-20 14:49:07 +02:00

33 lines
733 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)
# integration test binaries
add_subdirectory(integration)