X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e4f869f0eefc6832dbcca96b9c91ef2f44af4138..772752c551d4a98997eca9ec0991a7987c95cd36:/tools/cmake/Tests.cmake diff --git a/tools/cmake/Tests.cmake b/tools/cmake/Tests.cmake index f380fde468..c6f7138501 100644 --- a/tools/cmake/Tests.cmake +++ b/tools/cmake/Tests.cmake @@ -1,14 +1,11 @@ -IF(enable_smpi AND NOT WIN32) - execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicc) - execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicxx) - execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpiff) - execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpif90) - execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpirun) -ENDIF() - SET(TESH_OPTION "--ignore-jenkins") SET(TESH_COMMAND "${PYTHON_EXECUTABLE}" ${CMAKE_BINARY_DIR}/bin/tesh) +SET(TESH_LIBRARY_PATH "${CMAKE_BINARY_DIR}/lib") +if(NOT $ENV{LD_LIBRARY_PATH} STREQUAL "") + SET(TESH_LIBRARY_PATH "${TESH_LIBRARY_PATH}:$ENV{LD_LIBRARY_PATH}") +endif() + IF(enable_memcheck) INCLUDE(FindValgrind) @@ -53,19 +50,53 @@ MACRO(ADD_TESH NAME) endif() ENDMACRO() +# Build a list variable named FACTORIES_LIST with the given arguments, but: +# - replace wildcard "*" with all known factories +# - if the list begins with "^", take the complement +# - finally remove unsupported factories +# +# Used by ADD_TESH_FACTORIES, and SET_TESH_PROPERTIES +MACRO(SETUP_FACTORIES_LIST) + set(ALL_KNOWN_FACTORIES "thread;boost;raw;ucontext") + + if("${ARGV}" STREQUAL "*") # take all known factories + SET(FACTORIES_LIST ${ALL_KNOWN_FACTORIES}) + elseif("${ARGV}" MATCHES "^\\^") # exclude given factories + SET(FACTORIES_LIST ${ALL_KNOWN_FACTORIES}) + STRING(SUBSTRING "${ARGV}" 1 -1 EXCLUDED) + LIST(REMOVE_ITEM FACTORIES_LIST ${EXCLUDED}) + else() # take given factories + SET(FACTORIES_LIST "${ARGV}") + endif() + + # Exclude unsupported factories. Threads are always available, thanks to C++11 threads. + if(NOT HAVE_BOOST_CONTEXTS) + LIST(REMOVE_ITEM FACTORIES_LIST "boost") + endif() + if(NOT HAVE_RAW_CONTEXTS) + LIST(REMOVE_ITEM FACTORIES_LIST "raw") + endif() + if(NOT HAVE_UCONTEXT_CONTEXTS) + LIST(REMOVE_ITEM FACTORIES_LIST "ucontext") + endif() + + # Check that there is no unknown factory + FOREACH(FACTORY ${FACTORIES_LIST}) + if(NOT FACTORY IN_LIST ALL_KNOWN_FACTORIES) + message(FATAL_ERROR "Unknown factory: ${FACTORY}") + endif() + ENDFOREACH() +ENDMACRO() + MACRO(ADD_TESH_FACTORIES NAME FACTORIES) SET(ARGR ${ARGV}) LIST(REMOVE_AT ARGR 0) # remove name FOREACH(I ${FACTORIES}) # remove all factories LIST(REMOVE_AT ARGR 0) ENDFOREACH() - FOREACH(FACTORY ${FACTORIES}) - if ((${FACTORY} STREQUAL "thread" ) OR # Always available, thanks to C++11 threads - (${FACTORY} STREQUAL "boost" AND HAVE_BOOST_CONTEXTS) OR - (${FACTORY} STREQUAL "raw" AND HAVE_RAW_CONTEXTS) OR - (${FACTORY} STREQUAL "ucontext" AND HAVE_UCONTEXT_CONTEXTS)) - ADD_TESH("${NAME}-${FACTORY}" "--cfg" "contexts/factory:${FACTORY}" ${ARGR}) - ENDIF() + SETUP_FACTORIES_LIST(${FACTORIES}) + FOREACH(FACTORY ${FACTORIES_LIST}) + ADD_TESH("${NAME}-${FACTORY}" "--cfg" "contexts/factory:${FACTORY}" ${ARGR}) ENDFOREACH() ENDMACRO() @@ -75,13 +106,9 @@ MACRO(SET_TESH_PROPERTIES NAME FACTORIES) FOREACH(I ${FACTORIES}) # remove all factories LIST(REMOVE_AT ARGR 0) ENDFOREACH() - FOREACH(FACTORY ${FACTORIES}) - if ((${FACTORY} STREQUAL "thread" ) OR # Always available, thanks to C++11 threads - (${FACTORY} STREQUAL "boost" AND HAVE_BOOST_CONTEXTS) OR - (${FACTORY} STREQUAL "raw" AND HAVE_RAW_CONTEXTS) OR - (${FACTORY} STREQUAL "ucontext" AND HAVE_UCONTEXT_CONTEXTS)) - set_tests_properties("${NAME}-${FACTORY}" PROPERTIES ${ARGR}) - endif() + SETUP_FACTORIES_LIST(${FACTORIES}) + FOREACH(FACTORY ${FACTORIES_LIST}) + set_tests_properties("${NAME}-${FACTORY}" PROPERTIES ${ARGR}) ENDFOREACH() ENDMACRO() @@ -100,6 +127,7 @@ set(UNIT_TESTS src/xbt/unit-tests_main.cpp src/xbt/config_test.cpp src/xbt/dict_test.cpp src/xbt/dynar_test.cpp + src/xbt/random_test.cpp src/xbt/xbt_str_test.cpp src/kernel/lmm/maxmin_test.cpp) if (SIMGRID_HAVE_MC) @@ -113,7 +141,6 @@ add_dependencies (tests unit-tests) target_link_libraries(unit-tests simgrid) ADD_TEST(unit-tests ${CMAKE_BINARY_DIR}/unit-tests) set_property(TARGET unit-tests APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}") -add_dependencies(tests unit-tests) set(EXTRA_DIST ${EXTRA_DIST} ${UNIT_TESTS}) unset(UNIT_TESTS)