Commit 978beda8 authored by jan.koester's avatar jan.koester
Browse files

test

parent c2025958
Loading
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -69,3 +69,21 @@ target_link_libraries(test_index PRIVATE
    GTest::gtest_main
)
gtest_discover_tests(test_index)

# ── Performance / runtime benchmarks (memory, storage, access times) ──
add_executable(test_performance test_performance.cpp)
target_include_directories(test_performance PRIVATE ${CMAKE_SOURCE_DIR}/src)
target_link_libraries(test_performance PRIVATE
    authobj
    GTest::gtest_main
)
gtest_discover_tests(test_performance)

# ── Cluster-mode performance benchmarks ──
add_executable(test_cluster_performance test_cluster_performance.cpp)
target_include_directories(test_cluster_performance PRIVATE ${CMAKE_SOURCE_DIR}/src)
target_link_libraries(test_cluster_performance PRIVATE
    authobj
    GTest::gtest_main
)
gtest_discover_tests(test_cluster_performance)
+619 −0

File added.

Preview size limit exceeded, changes collapsed.

+543 −0

File added.

Preview size limit exceeded, changes collapsed.