Salome HOME
Copyright update: 2016
[modules/paravis.git] / test / VisuPrs / dump_study / CMakeLists.txt
1 # Copyright (C) 2010-2016  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 SET(BASE_TESTS A0 B0)
21 SET(ALL_TESTS  A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 B0 B1 B3 B4 B5)
22
23 # For make test
24 IF(SALOME_PARAVIS_ALL_TEST)
25   SET(TEST_NAMES ${ALL_TESTS})
26 ELSE()
27   SET(TEST_NAMES ${BASE_TESTS})
28 ENDIF()
29
30 FOREACH(tfile ${TEST_NAMES})
31   SET(TEST_NAME DUMPSTUDY_${tfile})
32   ADD_TEST(${TEST_NAME} ${PYTHON_EXECUTABLE} ${SALOME_TEST_DRIVER} ${TIMEOUT}
33     ${CMAKE_CURRENT_SOURCE_DIR}/${tfile}.py)
34   SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES FAIL_REGULAR_EXPRESSION "FAILED" TIMEOUT ${TIMEOUT})
35   SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES ENVIRONMENT "${tests_env}")
36 ENDFOREACH()
37
38 # Application tests
39 SET(APPLICATION_TESTS ${ALL_TESTS})
40 SET(TEST_INSTALL_DIRECTORY ${SALOME_INSTALL_SCRIPT_SCRIPTS}/test/VisuPrs/dump_study)
41
42 FOREACH(tfile ${APPLICATION_TESTS})
43   INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${tfile}.py
44           DESTINATION ${TEST_INSTALL_DIRECTORY})
45 ENDFOREACH()
46
47 INSTALL(FILES CTestTestfileInstall.cmake
48         DESTINATION ${TEST_INSTALL_DIRECTORY}
49         RENAME CTestTestfile.cmake)