Salome HOME
Merge branch 'master' into cgt/split
[modules/shaper.git] / test.compatibility / CMakeLists.txt
1 # Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 ENABLE_TESTING()
21
22 file(GLOB pyFiles "*.py")
23
24 if (WIN32) # different separators and path to libraries variable name
25   SET(_JUSTPATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_BIN};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES};${SUIT_LIB_DIR};$ENV{PATH}")
26   STRING(REPLACE "\\" "/" _JUSTPATH "${_JUSTPATH}")
27   STRING(REPLACE ";" "\\;" _JUSTPATH "${_JUSTPATH}")
28   SET(_PYTHONPATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES};${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_ADDONS};$ENV{PYTHONPATH}")
29   STRING(REPLACE "\\" "/" _PYTHONPATH "${_PYTHONPATH}")
30   STRING(REPLACE ";" "\\;" _PYTHONPATH "${_PYTHONPATH}")
31 else()
32   SET(_LD_LIBRARY_PATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_BIN}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES}:${SUIT_LIB_DIR}:$ENV{LD_LIBRARY_PATH}")
33   SET(_PYTHONPATH "${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_SWIG}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_PLUGIN_FILES}:${CMAKE_INSTALL_PREFIX}/${SHAPER_INSTALL_ADDONS}:$ENV{PYTHONPATH}")
34 endif()
35
36 foreach(eachFilePath ${pyFiles})
37   # Strip the ".py" suffix
38   GET_FILENAME_COMPONENT(aTestName ${eachFilePath} NAME_WE)
39
40   # Add "SubprojectName_" prefix
41   GET_FILENAME_COMPONENT(aSubprojectName ${CMAKE_CURRENT_SOURCE_DIR} NAME)
42   SET(aTestName "${aSubprojectName}_${aTestName}")
43
44   # Full path to the python test file beeing executed
45   SET(aTestFilePath "${eachFilePath}")
46   IF(EXISTS ${aTestFilePath})
47     ADD_TEST(NAME ${aTestName} COMMAND ${PYTHON_EXECUTABLE} ${aTestFilePath})
48     if (WIN32) # different path to libraries variable name
49       SET_TESTS_PROPERTIES(${aTestName} PROPERTIES ENVIRONMENT "PATH=${_JUSTPATH};PYTHONPATH=${_PYTHONPATH}"
50         LABELS "tests_compatibility")
51     else()
52       SET_TESTS_PROPERTIES(${aTestName} PROPERTIES ENVIRONMENT "LD_LIBRARY_PATH=${_LD_LIBRARY_PATH};PYTHONPATH=${_PYTHONPATH}"
53         LABELS "tests_compatibility")
54     endif()
55     # Debug output...
56     # MESSAGE(STATUS "Test added: ${aTestName} file: ${aTestFilePath}")
57   ELSE(EXISTS ${aTestFilePath})
58     MESSAGE(WARNING "Can not find the test file: ${aTestFilePath}")
59   ENDIF(EXISTS ${aTestFilePath})
60 endforeach(eachFilePath ${ARGN})
61
62 ADD_CUSTOM_TARGET(run_tests_compatibility COMMAND ${CMAKE_CTEST_COMMAND} -C "${CMAKE_BUILD_TYPE}" -L "tests_compatibility")