Enable the baseline and manual tests

This commit is contained in:
John Wiegley 2012-05-20 05:01:17 -05:00
parent 4681e58d7f
commit 627574492e
3 changed files with 30 additions and 3 deletions

View file

@ -2,15 +2,40 @@ include(ProcessorCount)
ProcessorCount(PROCESSORS)
if(NOT PROCESSORS EQUAL 0)
set(CTEST_BUILD_FLAGS -j${PROCESSORS})
set(ctest_test_args ${ctest_test_args} PARALLEL_LEVEL ${PROCESSORS})
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})
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

View file

@ -0,0 +1 @@
add_ledger_harness_tests(Baseline)

View file

@ -0,0 +1 @@
add_ledger_harness_tests(Manual)