8647ab0 update help 8c434a7 have luatargets.cmake actually try building (parsing) the lua scripts abbbe59 update rendered help 4226520 remove unnecessary whitespace fce2353 fix some leftover juggler 2.2 bits in the juggler 3.0 finder 072dda4 fix libusb finder on windows 3bf666c be sure to find all needed boost libraries for juggler 3.0 3e0d529 handle windows names for juggler 3.0 libraries 6cb00f4 handle config types in dashboard scripts 449fe46 Improve vrpn/quatlib finders to find the default locations on Windows 450a051 improve launcher templates e8e1aee Fix the gdb finder 099d79f Fix finding OSG in some cases 2d5319f Update help files 9567cf8 Improve glove5dt finder 73d4de3 Find git.cmd on windows cef7140 Silly bug in simpler juggler finder 5706470 Improve juggler finder 2f6f3ef Fix gdb finder ae37c1a Clean up juggler finding 9416490 Improve gdb finder d30789e Merge changes from finding juggler 2.2 into 3.0 00d407e Don't force juggler into debug mode 6668496 No more nspr on windows 737b8e2 Fix boost finding in VPR 2.2 c530fa3 Don't need a separate cppdom module for juggler 30 c10441c Merge branch 'master' of https://github.com/bnewendorp/cmake-modules into bnewendorp-master 0485c6c Update rendered help c4c1ea8 Improve formatting of copyright notice when rendered to html 58ba978 Add reference to help in the readme 2052efb Generate text too, and rename e3a0f3f Add help files and aboutthesemodules dummy module dab6182 GetGitRevisionDescription: Fix HEAD hash finding in case of a detached HEAD checkout 278658c Fix a wee bug in the gdb finder f0ac2bc Launchers now check version of GDB before throwing options at it. Fixes --debugger option on Macs. 6e66227 find gdb 1cbceb8 rename luatargets to filecopytargets, and forward calls from the old name 0bdd129 add the upcoming boost 1.46 86cfbb4 make boost test targets succeed on macs with homebrew c290bbe Merge boost fix from pre-2.8.4 cc24a0d Improve dcubed finder and use nested targets 69b25b4 Clean up parasolid nested target f467bb0 Don't force juggler into debug mode 250c5f0 Find boost 1.45 b15faa5 Add HIDAPI and libusb1 7236f4f Add OptionRequires module 7032b46 Improvements to cutil 9f0e966 Tweak to boost test c60a1ea Added Juggler 3.0 files git-subtree-dir: cmake git-subtree-split: 8647ab061587c8c0fd7343b77b3e3bd367da0180
275 lines
7.9 KiB
CMake
275 lines
7.9 KiB
CMake
# - Add tests using boost::test
|
|
#
|
|
# Add this line to your test files in place of including a basic boost test header:
|
|
# #include <BoostTestTargetConfig.h>
|
|
#
|
|
# If you cannot do that and must use the included form for a given test,
|
|
# include the line
|
|
# // OVERRIDE_BOOST_TEST_INCLUDED_WARNING
|
|
# in the same file with the boost test include.
|
|
#
|
|
# include(BoostTestTargets)
|
|
# add_boost_test(<testdriver_name> SOURCES <source1> [<more sources...>]
|
|
# [FAIL_REGULAR_EXPRESSION <additional fail regex>]
|
|
# [LAUNCHER <generic launcher script>]
|
|
# [LIBRARIES <library> [<library>...]]
|
|
# [RESOURCES <resource> [<resource>...]]
|
|
# [TESTS <testcasename> [<testcasename>...]])
|
|
#
|
|
# If for some reason you need access to the executable target created,
|
|
# it can be found in ${${testdriver_name}_TARGET_NAME} as specified when
|
|
# you called add_boost_test
|
|
#
|
|
# Requires CMake 2.6 or newer (uses the 'function' command)
|
|
#
|
|
# Requires:
|
|
# GetForceIncludeDefinitions
|
|
# CopyResourcesToBuildTree
|
|
#
|
|
# Original Author:
|
|
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
|
|
# http://academic.cleardefinition.com
|
|
# Iowa State University HCI Graduate Program/VRAC
|
|
#
|
|
# Copyright Iowa State University 2009-2010.
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
if(__add_boost_test)
|
|
return()
|
|
endif()
|
|
set(__add_boost_test YES)
|
|
|
|
set(BOOST_TEST_TARGET_PREFIX "boosttest")
|
|
|
|
if(NOT Boost_FOUND)
|
|
find_package(Boost 1.34.0 QUIET)
|
|
endif()
|
|
if("${Boost_VERSION}0" LESS "1034000")
|
|
set(_shared_msg
|
|
"NOTE: boost::test-based targets and tests cannot "
|
|
"be added: boost >= 1.34.0 required but not found. "
|
|
"(found: '${Boost_VERSION}'; want >=103400) ")
|
|
if(BUILD_TESTING)
|
|
message(FATAL_ERROR
|
|
${_shared_msg}
|
|
"You may disable BUILD_TESTING to continue without the "
|
|
"tests.")
|
|
else()
|
|
message(STATUS
|
|
${_shared_msg}
|
|
"BUILD_TESTING disabled, so continuing anyway.")
|
|
endif()
|
|
endif()
|
|
|
|
include(GetForceIncludeDefinitions)
|
|
include(CopyResourcesToBuildTree)
|
|
|
|
if(Boost_FOUND AND NOT "${Boost_VERSION}0" LESS "1034000")
|
|
set(_boosttesttargets_libs)
|
|
set(_boostConfig "BoostTestTargetsIncluded.h")
|
|
if(NOT Boost_UNIT_TEST_FRAMEWORK_LIBRARY)
|
|
find_package(Boost 1.34.0 QUIET COMPONENTS unit_test_framework)
|
|
endif()
|
|
if(Boost_UNIT_TEST_FRAMEWORK_LIBRARY)
|
|
set(_boosttesttargets_libs "${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}")
|
|
if(Boost_USE_STATIC_LIBS)
|
|
set(_boostConfig "BoostTestTargetsStatic.h")
|
|
else()
|
|
if(NOT APPLE)
|
|
set(_boostConfig "BoostTestTargetsDynamic.h")
|
|
endif()
|
|
endif()
|
|
endif()
|
|
get_filename_component(_moddir ${CMAKE_CURRENT_LIST_FILE} PATH)
|
|
configure_file("${_moddir}/${_boostConfig}"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/BoostTestTargetConfig.h"
|
|
COPYONLY)
|
|
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
|
|
endif()
|
|
|
|
function(add_boost_test _name)
|
|
if(NOT BUILD_TESTING)
|
|
return()
|
|
endif()
|
|
if("${CMAKE_VERSION}" VERSION_LESS "2.8.0")
|
|
if(NOT "${_boost_test_cmakever_pestered}x" EQUALS "${CMAKE_VERSION}x")
|
|
message(STATUS
|
|
"Not adding boost::test targets - CMake 2.8.0 or newer required, using ${CMAKE_VERSION}")
|
|
set(_boost_test_cmakever_pestered
|
|
"${CMAKE_VERSION}"
|
|
CACHE
|
|
INTERNAL
|
|
""
|
|
FORCE)
|
|
endif()
|
|
return()
|
|
endif()
|
|
|
|
# parse arguments
|
|
set(_nowhere)
|
|
set(_curdest _nowhere)
|
|
set(_val_args
|
|
SOURCES
|
|
FAIL_REGULAR_EXPRESSION
|
|
LAUNCHER
|
|
LIBRARIES
|
|
RESOURCES
|
|
TESTS)
|
|
set(_bool_args
|
|
USE_COMPILED_LIBRARY)
|
|
foreach(_arg ${_val_args} ${_bool_args})
|
|
set(${_arg})
|
|
endforeach()
|
|
foreach(_element ${ARGN})
|
|
list(FIND _val_args "${_element}" _val_arg_find)
|
|
list(FIND _bool_args "${_element}" _bool_arg_find)
|
|
if("${_val_arg_find}" GREATER "-1")
|
|
set(_curdest "${_element}")
|
|
elseif("${_bool_arg_find}" GREATER "-1")
|
|
set("${_element}" ON)
|
|
set(_curdest _nowhere)
|
|
else()
|
|
list(APPEND ${_curdest} "${_element}")
|
|
endif()
|
|
endforeach()
|
|
|
|
if(_nowhere)
|
|
message(FATAL_ERROR "Syntax error in use of add_boost_test!")
|
|
endif()
|
|
|
|
if(NOT SOURCES)
|
|
message(FATAL_ERROR
|
|
"Syntax error in use of add_boost_test: at least one source file required!")
|
|
endif()
|
|
|
|
if(Boost_FOUND AND NOT "${Boost_VERSION}0" LESS "1034000")
|
|
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
set(includeType)
|
|
foreach(src ${SOURCES})
|
|
file(READ ${src} thefile)
|
|
if("${thefile}" MATCHES ".*BoostTestTargetConfig.h.*")
|
|
set(includeType CONFIGURED)
|
|
set(includeFileLoc ${src})
|
|
break()
|
|
elseif("${thefile}" MATCHES ".*boost/test/included/unit_test.hpp.*")
|
|
set(includeType INCLUDED)
|
|
set(includeFileLoc ${src})
|
|
set(_boosttesttargets_libs) # clear this out - linking would be a bad idea
|
|
if(NOT
|
|
"${thefile}"
|
|
MATCHES
|
|
".*OVERRIDE_BOOST_TEST_INCLUDED_WARNING.*")
|
|
message("Please replace the include line in ${src} with this alternate include line instead:")
|
|
message(" \#include <BoostTestTargetConfig.h>")
|
|
message("Once you've saved your changes, re-run CMake. (See BoostTestTargets.cmake for more info)")
|
|
endif()
|
|
break()
|
|
endif()
|
|
endforeach()
|
|
|
|
if(NOT _boostTestTargetsNagged${_name} STREQUAL "${includeType}")
|
|
if("includeType" STREQUAL "CONFIGURED")
|
|
message(STATUS
|
|
"Test '${_name}' uses the CMake-configurable form of the boost test framework - congrats! (Including File: ${includeFileLoc})")
|
|
elseif("${includeType}" STREQUAL "INCLUDED")
|
|
message("In test '${_name}': ${includeFileLoc} uses the 'included' form of the boost unit test framework.")
|
|
else()
|
|
message("In test '${_name}': Didn't detect the CMake-configurable boost test include.")
|
|
message("Please replace your existing boost test include in that test with the following:")
|
|
message(" \#include <BoostTestTargetConfig.h>")
|
|
message("Once you've saved your changes, re-run CMake. (See BoostTestTargets.cmake for more info)")
|
|
endif()
|
|
endif()
|
|
set(_boostTestTargetsNagged${_name}
|
|
"${includeType}"
|
|
CACHE
|
|
INTERNAL
|
|
""
|
|
FORCE)
|
|
|
|
|
|
if(RESOURCES)
|
|
list(APPEND SOURCES ${RESOURCES})
|
|
endif()
|
|
|
|
# Generate a unique target name, using the relative binary dir
|
|
# and provided name. (transform all / into _ and remove all other
|
|
# non-alphabet characters)
|
|
file(RELATIVE_PATH
|
|
targetpath
|
|
"${CMAKE_BINARY_DIR}"
|
|
"${CMAKE_CURRENT_BINARY_DIR}")
|
|
string(REGEX REPLACE "[^A-Za-z/_]" "" targetpath "${targetpath}")
|
|
string(REPLACE "/" "_" targetpath "${targetpath}")
|
|
|
|
set(_target_name ${BOOST_TEST_TARGET_PREFIX}-${targetpath}-${_name})
|
|
set(${_name}_TARGET_NAME "${_target_name}" PARENT_SCOPE)
|
|
|
|
# Build the test.
|
|
add_executable(${_target_name} ${SOURCES})
|
|
|
|
list(APPEND LIBRARIES ${_boosttesttargets_libs})
|
|
|
|
if(LIBRARIES)
|
|
target_link_libraries(${_target_name} ${LIBRARIES})
|
|
endif()
|
|
|
|
if(RESOURCES)
|
|
set_property(TARGET ${_target_name} PROPERTY RESOURCE ${RESOURCES})
|
|
copy_resources_to_build_tree(${_target_name})
|
|
endif()
|
|
|
|
if(NOT Boost_TEST_FLAGS)
|
|
# set(Boost_TEST_FLAGS --catch_system_error=yes --output_format=XML)
|
|
set(Boost_TEST_FLAGS --catch_system_error=yes)
|
|
endif()
|
|
|
|
# TODO: Figure out why only recent boost handles individual test running properly
|
|
|
|
if(LAUNCHER)
|
|
set(_test_command ${LAUNCHER} "\$<TARGET_FILE:${_target_name}>")
|
|
else()
|
|
set(_test_command ${_target_name})
|
|
endif()
|
|
|
|
if(TESTS AND ( "${Boost_VERSION}" VERSION_GREATER "103799" ))
|
|
foreach(_test ${TESTS})
|
|
add_test(NAME
|
|
${_name}-${_test}
|
|
COMMAND
|
|
${_test_command}
|
|
--run_test=${_test}
|
|
${Boost_TEST_FLAGS})
|
|
if(FAIL_REGULAR_EXPRESSION)
|
|
set_tests_properties(${_name}-${_test}
|
|
PROPERTIES
|
|
FAIL_REGULAR_EXPRESSION
|
|
"${FAIL_REGULAR_EXPRESSION}")
|
|
endif()
|
|
endforeach()
|
|
else()
|
|
add_test(NAME
|
|
${_name}-boost_test
|
|
COMMAND
|
|
${_test_command}
|
|
${Boost_TEST_FLAGS})
|
|
if(FAIL_REGULAR_EXPRESSION)
|
|
set_tests_properties(${_name}-${_test}
|
|
PROPERTIES
|
|
FAIL_REGULAR_EXPRESSION
|
|
"${FAIL_REGULAR_EXPRESSION}")
|
|
endif()
|
|
endif()
|
|
|
|
# CppCheck the test if we can.
|
|
if(COMMAND add_cppcheck)
|
|
add_cppcheck(${_target_name} STYLE UNUSED_FUNCTIONS)
|
|
endif()
|
|
|
|
endif()
|
|
endfunction()
|