Skip to content
Snippets Groups Projects
Commit 34b20909 authored by pospelov's avatar pospelov
Browse files

TestCore and TestFit functional tests are executed now through crest machinery

parent 770ffe32
No related branches found
No related tags found
No related merge requests found
############################################################################ ############################################################################
# CMakeLists.txt file for building BornAgain/App executalbe # CMakeLists.txt file for building BornAgain/App executable
############################################################################ ############################################################################
cmake_minimum_required(VERSION 2.8 FATAL_ERROR) cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
......
...@@ -15,15 +15,16 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules) ...@@ -15,15 +15,16 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
#--- Including macros --- #--- Including macros ---
include(BornAgainMacros) include(BornAgainMacros)
include(SearchInstalledSoftware) include(SearchInstalledSoftware)
include(CMakeMacroParseArguments)
#--- Recurse into the given subdirectories --- #--- Recurse into the given subdirectories ---
add_subdirectory(Core) add_subdirectory(Core)
add_subdirectory(ThirdParty/gtest) add_subdirectory(ThirdParty/gtest)
add_subdirectory(Tests/UnitTests/TestCore)
if(ROOT_FOUND) if(ROOT_FOUND)
add_subdirectory(Fit) add_subdirectory(Fit)
add_subdirectory(App) add_subdirectory(App)
endif() endif()
# functional tests (cmake; make check)
add_subdirectory(Tests/FunctionalTests)
############################################################################
# CMakeLists.txt file for running functional tests
############################################################################
enable_testing()
add_custom_target(check ${CMAKE_CTEST_COMMAND} -V)
#add_subdirectory(TestCore)
add_subdirectory(TestFit)
############################################################################
# CMakeLists.txt file for building TestCore functional tests
############################################################################
set(CMAKE_CXX_FLAGS "-DSTANDALONE")
set(list_of_tests
"IsGISAXS01"
"IsGISAXS02"
"IsGISAXS03"
"IsGISAXS04"
"IsGISAXS06"
"IsGISAXS07"
"IsGISAXS08"
"IsGISAXS09"
"IsGISAXS10"
"IsGISAXS11"
"IsGISAXS15"
"MesoCrystal1"
)
foreach(_test ${list_of_tests})
BORNAGAIN_EXECUTABLE(${_test} LOCATIONS ${_test} EXCLUDE_FROM_ALL LIBRARIES ${BornAgainCore_LIBRARY})
BORNAGAIN_ADD_TEST(${_test})
endforeach()
############################################################################
# CMakeLists.txt file for building TestFit functional tests
############################################################################
set(CMAKE_CXX_FLAGS "-DSTANDALONE")
set(list_of_tests
"TestFit01"
"TestFit02"
)
foreach(_test ${list_of_tests})
BORNAGAIN_EXECUTABLE(${_test} LOCATIONS ${_test} EXCLUDE_FROM_ALL LIBRARIES ${BornAgainCore_LIBRARY} ${BornAgainFit_LIBRARY})
BORNAGAIN_ADD_TEST(${_test})
endforeach()
...@@ -2,9 +2,7 @@ ...@@ -2,9 +2,7 @@
# CMakeLists.txt file for building BornAgain framework # CMakeLists.txt file for building BornAgain framework
############################################################################ ############################################################################
cmake_minimum_required(VERSION 2.8 FATAL_ERROR) enable_testing()
enable_testing(true)
add_executable( TestCore main.cpp ) add_executable( TestCore main.cpp )
......
...@@ -27,94 +27,34 @@ else() ...@@ -27,94 +27,34 @@ else()
endif() endif()
#---------------------------------------------------------------------------------------------------
# BORNAGAIN_USE_PACKAGE( package ) # -----------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------------- # add executable (ARG, options, one_value_keyword, multi_value_keywoard arguments (aka ${ARG_UNPARSED_ARGUMENTS})
# macro( BORNAGAIN_USE_PACKAGE package ) # -----------------------------------------------------------------------------
# if( EXISTS ${CMAKE_SOURCE_DIR}/${package}/CMakeLists.txt) function(BORNAGAIN_EXECUTABLE executable)
# set(_use_packages ${_use_packages} ${package}) CMAKE_PARSE_ARGUMENTS(ARG "EXCLUDE_FROM_ALL" "" "LIBRARIES;LOCATIONS" "" ${ARGN})
# include_directories( ${CMAKE_SOURCE_DIR}/${package}/inc ) # retrieving source list
# set_property(GLOBAL APPEND PROPERTY ROOT_BUILDTREE_PACKAGES ${package}) file(GLOB source_files ${ARG_LOCATIONS}/*.cpp)
# file(READ ${CMAKE_SOURCE_DIR}/${package}/CMakeLists.txt file_contents)
# string( REGEX MATCHALL "ROOT_USE_PACKAGE[ ]*[(][ ]*([^ )])+" vars ${file_contents}) # making executable
# foreach( var ${vars}) if(${ARG_EXCLUDE_FROM_ALL})
# string(REGEX REPLACE "ROOT_USE_PACKAGE[ ]*[(][ ]*([^ )])" "\\1" p ${var}) add_executable(${executable} EXCLUDE_FROM_ALL ${source_files} )
# #---avoid calling the same one at the same directory level --------------------------------- else()
# list(FIND _use_packages ${p} _done) add_executable(${executable} ${ARG_UNPARSED_ARGUMENTS} )
# if(_done EQUAL -1) endif()
# ROOT_USE_PACKAGE(${p}) # linking libraries from the list
# endif() foreach(_libname ${ARG_LIBRARIES})
# endforeach() include_directories(${${_libname}_INCLUDE_DIRS})
# else() target_link_libraries(${executable} ${_libname})
# #find_package(${package}) endforeach()
# #GET_PROPERTY(parent DIRECTORY PROPERTY PARENT_DIRECTORY) endfunction()
# #if(parent)
# #set(${package}_environment ${${package}_environment} PARENT_SCOPE)
# #else() # -----------------------------------------------------------------------------
# # set(${package}_environment ${${package}_environment} ) # add cmake test
# #endif() # -----------------------------------------------------------------------------
# include_directories( ${${package}_INCLUDE_DIRS} ) function(BORNAGAIN_ADD_TEST test)
# link_directories( ${${package}_LIBRARY_DIRS} ) add_test( ${test} ${test} ) # TestName ExeName
# endif() add_dependencies(check ${test})
# endmacro() endfunction()
#
#
# function(ROOT_GENERATE_DICTIONARY dictionary)
# message("QQQQ 1.1")
# PARSE_ARGUMENTS(ARG "LINKDEF;OPTIONS" "" ${ARGN})
# #---Get the list of header files-------------------------
# set(headerfiles)
# foreach(fp ${ARG_DEFAULT_ARGS})
# file(GLOB files inc/${fp})
# if(files)
# foreach(f ${files})
# if(NOT f MATCHES LinkDef)
# set(headerfiles ${headerfiles} ${f})
# endif()
# endforeach()
# else()
# set(headerfiles ${headerfiles} ${fp})
# endif()
# endforeach()
# string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}/inc/" "" rheaderfiles "${headerfiles}")
# #---Get the list of include directories------------------
# get_directory_property(incdirs INCLUDE_DIRECTORIES)
# if(CMAKE_PROJECT_NAME STREQUAL ROOT)
# set(includedirs -I${CMAKE_CURRENT_SOURCE_DIR}/inc
# -I${CMAKE_BINARY_DIR}/include
# -I${CMAKE_SOURCE_DIR}/cint/cint/include
# -I${CMAKE_SOURCE_DIR}/cint/cint/stl
# -I${CMAKE_SOURCE_DIR}/cint/cint/lib)
# else()
# set(includedirs -I${CMAKE_CURRENT_SOURCE_DIR}/inc)
# endif()
# foreach( d ${incdirs})
# set(includedirs ${includedirs} -I${d})
# endforeach()
# #---Get the list of definitions---------------------------
# get_directory_property(defs COMPILE_DEFINITIONS)
# foreach( d ${defs})
# if(NOT d MATCHES "=")
# set(definitions ${definitions} -D${d})
# endif()
# endforeach()
# #---Get LinkDef.h file------------------------------------
# foreach( f ${ARG_LINKDEF})
# if( IS_ABSOLUTE ${f})
# set(_linkdef ${_linkdef} ${f})
# else()
# if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/inc/${f})
# set(_linkdef ${_linkdef} ${CMAKE_CURRENT_SOURCE_DIR}/inc/${f})
# else()
# set(_linkdef ${_linkdef} ${CMAKE_CURRENT_SOURCE_DIR}/${f})
# endif()
# endif()
# endforeach()
# message("QQQQ 1.2 a) ${ARG_OPTIONS} b) ${ARG_LINKDEF} c) ${rootcint_cmd}")
# #---call rootcint------------------------------------------
# add_custom_command(OUTPUT ${dictionary}.cxx ${dictionary}.h
# COMMAND ${rootcint_cmd} -cint -f ${dictionary}.cxx
# -c ${ARG_OPTIONS} ${definitions} ${includedirs} ${rheaderfiles} ${_linkdef}
# DEPENDS ${headerfiles} ${_linkdef} ${ROOTCINTDEP})
# endfunction()
#
# This file defines the following macro for developers needing to parse
# arguments passed to a CMake macro using names.
#
# PARSE_ARGUMENTS - parse arguments supplied to a macro
#
# The PARSE_ARGUMENTS macro will take the arguments of another macro and define
# several variables. The first argument to PARSE_ARGUMENTS is a prefix to put
# on all variables it creates. The second argument is a list of names, and the
# third argument is a list of options. Both of these lists should be quoted.
# The rest of PARSE_ARGUMENTS are arguments from another macro to be parsed.
#
# PARSE_ARGUMENTS(prefix arg_names options arg1 arg2...)
#
# For each item in options, PARSE_ARGUMENTS will create a variable with that
# name, prefixed with prefix_. So, for example, if prefix is MY_MACRO and
# options is OPTION1;OPTION2, then PARSE_ARGUMENTS will create the variables
# MY_MACRO_OPTION1 and MY_MACRO_OPTION2. These variables will be set to true
# if the option exists in the command line or false otherwise.
#
# For each item in arg_names, PARSE_ARGUMENTS will create a variable with that
# name, prefixed with prefix_. Each variable will be filled with the arguments
# that occur after the given arg_name is encountered up to the next arg_name
# or the end of the arguments. All options are removed from these lists.
# PARSE_ARGUMENTS also creates a prefix_DEFAULT_ARGS variable containing the
# list of all arguments up to the first arg_name encountered.
#
# Here is a simple, albeit impractical, example of using PARSE_ARGUMENTS that
# demonstrates its behavior.
#
# SET(arguments
# hello OPTION3 world
# LIST3 foo bar
# OPTION2
# LIST1 fuz baz
# )
# PARSE_ARGUMENTS(ARG "LIST1;LIST2;LIST3" "OPTION1;OPTION2;OPTION3" ${arguments})
#
# PARSE_ARGUMENTS creates 7 variables and sets them as follows:
#
# * ARG_DEFAULT_ARGS: hello;world
# * ARG_LIST1: fuz;baz
# * ARG_LIST2:
# * ARG_LIST3: foo;bar
# * ARG_OPTION1: FALSE
# * ARG_OPTION2: TRUE
# * ARG_OPTION3: TRUE
#
# If you don't have any options, use an empty string in its place.
#
# PARSE_ARGUMENTS(ARG "LIST1;LIST2;LIST3" "" ${arguments})
#
# Likewise if you have no lists.
#
# PARSE_ARGUMENTS(ARG "" "OPTION1;OPTION2;OPTION3" ${arguments})
#
#
# Code and description copied from:
# http://www.cmake.org/Wiki/CMakeMacroParseArguments
MACRO(PARSE_ARGUMENTS prefix arg_names option_names)
SET(DEFAULT_ARGS)
FOREACH(arg_name ${arg_names})
SET(${prefix}_${arg_name})
ENDFOREACH(arg_name)
FOREACH(option ${option_names})
SET(${prefix}_${option} FALSE)
ENDFOREACH(option)
SET(current_arg_name DEFAULT_ARGS)
SET(current_arg_list)
FOREACH(arg ${ARGN})
SET(larg_names ${arg_names})
LIST(FIND larg_names "${arg}" is_arg_name)
IF (is_arg_name GREATER -1)
SET(${prefix}_${current_arg_name} ${current_arg_list})
SET(current_arg_name ${arg})
SET(current_arg_list)
ELSE (is_arg_name GREATER -1)
SET(loption_names ${option_names})
LIST(FIND loption_names "${arg}" is_option)
IF (is_option GREATER -1)
SET(${prefix}_${arg} TRUE)
ELSE (is_option GREATER -1)
SET(current_arg_list ${current_arg_list} ${arg})
ENDIF (is_option GREATER -1)
ENDIF (is_arg_name GREATER -1)
ENDFOREACH(arg)
SET(${prefix}_${current_arg_name} ${current_arg_list})
ENDMACRO(PARSE_ARGUMENTS)
...@@ -59,10 +59,8 @@ find_package(GCCXML) ...@@ -59,10 +59,8 @@ find_package(GCCXML)
# LINKDEF linkdef1 ... # LINKDEF linkdef1 ...
# OPTIONS opt1...) # OPTIONS opt1...)
function(ROOT_GENERATE_DICTIONARY dictionary) function(ROOT_GENERATE_DICTIONARY dictionary)
message("AAAAAAAA 1.1")
CMAKE_PARSE_ARGUMENTS(ARG "" "" "LINKDEF;OPTIONS" "" ${ARGN}) CMAKE_PARSE_ARGUMENTS(ARG "" "" "LINKDEF;OPTIONS" "" ${ARGN})
#---Get the list of header files------------------------- #---Get the list of header files-------------------------
message("AAAAAAAA 1.2")
set(headerfiles) set(headerfiles)
foreach(fp ${ARG_UNPARSED_ARGUMENTS}) foreach(fp ${ARG_UNPARSED_ARGUMENTS})
file(GLOB files ${fp}) file(GLOB files ${fp})
...@@ -96,7 +94,6 @@ function(ROOT_GENERATE_DICTIONARY dictionary) ...@@ -96,7 +94,6 @@ function(ROOT_GENERATE_DICTIONARY dictionary)
endif() endif()
endforeach() endforeach()
#---call rootcint------------------------------------------ #---call rootcint------------------------------------------
message("W ${ROOTCINT_EXECUTABLE} ${dictionary}.cxx ${linkdefs}")
add_custom_command(OUTPUT ${dictionary}.cxx ${dictionary}.h add_custom_command(OUTPUT ${dictionary}.cxx ${dictionary}.h
COMMAND ${ROOTCINT_EXECUTABLE} -cint -f ${dictionary}.cxx COMMAND ${ROOTCINT_EXECUTABLE} -cint -f ${dictionary}.cxx
-c ${ARG_OPTIONS} ${includedirs} ${headerfiles} ${linkdefs} -c ${ARG_OPTIONS} ${includedirs} ${headerfiles} ${linkdefs}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment