Skip to content

Commit 335be57

Browse files
committed
test: add executor operator unit tests
Add 20 tests covering BufferScan, Limit, Filter, Project, Sort, Aggregate, HashJoin operators
1 parent 78adf01 commit 335be57

2 files changed

Lines changed: 598 additions & 0 deletions

File tree

CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ if(BUILD_TESTS)
131131
add_cloudsql_test(multi_raft_tests tests/multi_raft_tests.cpp)
132132
add_cloudsql_test(distributed_txn_tests tests/distributed_txn_tests.cpp)
133133
add_cloudsql_test(analytics_tests tests/analytics_tests.cpp)
134+
add_cloudsql_test(raft_manager_tests tests/raft_manager_tests.cpp)
135+
add_cloudsql_test(raft_protocol_tests tests/raft_protocol_tests.cpp)
136+
add_cloudsql_test(columnar_table_tests tests/columnar_table_tests.cpp)
137+
add_cloudsql_test(storage_manager_tests tests/storage_manager_tests.cpp)
138+
add_cloudsql_test(rpc_server_tests tests/rpc_server_tests.cpp)
139+
add_cloudsql_test(operator_tests tests/operator_tests.cpp)
134140

135141
add_custom_target(run-tests
136142
COMMAND ${CMAKE_CTEST_COMMAND}

0 commit comments

Comments
 (0)