X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f7f70d5b16f2dee72574a36146a11598e5907e34..3bd99877105c107dbf2e174c36d014811a07b7e2:/tools/cmake/Tests.cmake diff --git a/tools/cmake/Tests.cmake b/tools/cmake/Tests.cmake index 30b8665427..e40775287e 100644 --- a/tools/cmake/Tests.cmake +++ b/tools/cmake/Tests.cmake @@ -9,6 +9,11 @@ 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) @@ -101,14 +106,15 @@ set(UNIT_TESTS src/xbt/unit-tests_main.cpp src/xbt/dict_test.cpp src/xbt/dynar_test.cpp src/xbt/xbt_str_test.cpp - teshsuite/surf/lmm_usage/lmm_solve.cpp) + src/kernel/lmm/maxmin_test.cpp) if (SIMGRID_HAVE_MC) set(UNIT_TESTS ${UNIT_TESTS} src/mc/sosp/Snapshot_test.cpp src/mc/sosp/PageStore_test.cpp) else() set(EXTRA_DIST ${EXTRA_DIST} src/mc/sosp/Snapshot_test.cpp src/mc/sosp/PageStore_test.cpp) endif() -add_executable (unit-tests ${UNIT_TESTS}) +add_executable (unit-tests EXCLUDE_FROM_ALL ${UNIT_TESTS}) +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}")