Skip to content
Snippets Groups Projects
Forked from ogs / ogs
23900 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Test.cmake 708 B
# Find tools and data
FIND_PROGRAM(TIME_TOOL_PATH time REQUIRED)
FIND_PROGRAM(DIFF_TOOL_PATH diff REQUIRED)
FIND_PROGRAM(GREP_TOOL_PATH grep REQUIRED)
FIND_PROGRAM(BASH_TOOL_PATH bash REQUIRED)
FIND_PROGRAM(VALGRIND_TOOL_PATH valgrind REQUIRED)
FIND_FILE(OGS-DATA_PATH ".ogs6-data.dummy" REQUIRED
	HINTS ${CMAKE_SOURCE_DIR}/../ogs6-data)
GET_FILENAME_COMPONENT(OGS-DATA_PATH ${OGS-DATA_PATH} PATH)

ENABLE_TESTING() # Enable CTest

# See http://www.vtk.org/Wiki/CMake/Testing_With_CTest for some customization options
SET(CTEST_CUSTOM_TESTS_IGNORE test-harness) # ignore logog test
CONFIGURE_FILE(
	${CMAKE_CURRENT_SOURCE_DIR}/scripts/cmake/test/CTestCustom.cmake.in
	${CMAKE_BINARY_DIR}/CTestCustom.cmake
)