File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,19 +7,19 @@ set(exec_perf_tests "ppc_perf_tests")
77# Init func tests executable files
88set (list_of_exec_tests "" )
99if (USE_FUNC_TESTS)
10- add_executable (${exec_func_tests} "${CMAKE_CURRENT_SOURCE_DIR } /func_runner/runner .cpp" )
10+ add_executable (${exec_func_tests} "${CMAKE_CURRENT_SOURCE_DIR } /runners/functional .cpp" )
1111 list (APPEND list_of_exec_tests ${exec_func_tests} )
1212endif (USE_FUNC_TESTS )
1313
1414# Init perf tests executable files
1515if (USE_PERF_TESTS)
16- add_executable (${exec_perf_tests} "${CMAKE_CURRENT_SOURCE_DIR } /perf_runner/runner .cpp" )
16+ add_executable (${exec_perf_tests} "${CMAKE_CURRENT_SOURCE_DIR } /runners/performance .cpp" )
1717 list (APPEND list_of_exec_tests ${exec_perf_tests} )
1818endif (USE_PERF_TESTS )
1919
2020SUBDIRLIST (subdirs ${CMAKE_CURRENT_LIST_DIR } )
2121foreach (subd ${subdirs} )
22- if (( subd STREQUAL "func_runner" ) OR (subd STREQUAL "perf_runner" ) )
22+ if (subd STREQUAL "runners" )
2323 continue ()
2424 endif ()
2525 add_subdirectory (${subd} )
Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ set(test_base_dir "${CMAKE_CURRENT_SOURCE_DIR}/tests")
77# Init func tests executable files
88set (list_of_exec_tests "" )
99if (USE_FUNC_TESTS)
10- file (GLOB_RECURSE func_tests_source_files "${test_base_dir} /func_tests /*" )
10+ file (GLOB_RECURSE func_tests_source_files "${test_base_dir} /functional /*" )
1111 target_sources (${exec_func_tests} PRIVATE ${func_tests_source_files} )
1212 list (APPEND list_of_exec_tests ${exec_func_tests} )
1313endif (USE_FUNC_TESTS )
1414
1515# Init perf tests executable files
1616if (USE_PERF_TESTS)
17- file (GLOB_RECURSE perf_tests_source_files "${test_base_dir} /perf_tests /*" )
17+ file (GLOB_RECURSE perf_tests_source_files "${test_base_dir} /performance /*" )
1818 target_sources (${exec_perf_tests} PRIVATE ${perf_tests_source_files} )
1919 list (APPEND list_of_exec_tests ${exec_perf_tests} )
2020endif (USE_PERF_TESTS )
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments