41 lines
1.2 KiB
CMake
41 lines
1.2 KiB
CMake
include(ProcessorCount)
|
|
ProcessorCount(PROCESSORS)
|
|
|
|
if(NOT PROCESSORS EQUAL 0)
|
|
math(EXPR JOBS "${PROCESSORS} * 2")
|
|
set(CTEST_BUILD_FLAGS -j${JOBS})
|
|
endif()
|
|
|
|
get_target_property(LEDGER_LOCATION ledger LOCATION)
|
|
|
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} ${CTEST_BUILD_FLAGS})
|
|
|
|
add_subdirectory(unit)
|
|
|
|
if(HAVE_BOOST_PYTHON)
|
|
set(TEST_PYTHON_FLAGS "--python")
|
|
endif()
|
|
|
|
macro(add_ledger_harness_tests _class)
|
|
if(PYTHONINTERP_FOUND)
|
|
file(GLOB ${_class}_TESTS *.test)
|
|
foreach(TestFile ${${_class}_TESTS})
|
|
get_filename_component(TestFile_Name ${TestFile} NAME_WE)
|
|
string(FIND ${TestFile_Name} "_py" TestFile_IsPythonTest)
|
|
if((NOT TestFile_IsPythonTest) OR HAVE_BOOST_PYTHON)
|
|
add_test(${_class}Test_${TestFile_Name}
|
|
${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/test/RegressTests.py
|
|
${LEDGER_LOCATION} ${PROJECT_SOURCE_DIR}
|
|
${TestFile} ${TEST_PYTHON_FLAGS})
|
|
set_target_properties(check
|
|
PROPERTIES DEPENDS ${_class}Test_${TestFile_Name})
|
|
endif()
|
|
endforeach()
|
|
endif()
|
|
endmacro(add_ledger_harness_tests _class)
|
|
|
|
add_subdirectory(manual)
|
|
add_subdirectory(baseline)
|
|
add_subdirectory(regress)
|
|
|
|
### CMakeLists.txt ends here
|