]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/ParaMEDMEMTest/CMakeLists.txt
Salome HOME
6afee105a04a7a57afa335a1b3ffce00d90a7f95
[tools/medcoupling.git] / src / ParaMEDMEMTest / CMakeLists.txt
1 # Copyright (C) 2012-2023  CEA, EDF
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 ADD_SUBDIRECTORY(MPIAccess)   # maybe to delete one day ...
21
22 ADD_DEFINITIONS(${MPI_DEFINITIONS} ${CPPUNIT_DEFINITIONS})
23
24 INCLUDE_DIRECTORIES(
25   ${MPI_INCLUDE_DIRS}
26   ${MEDFILE_INCLUDE_DIRS}
27   ${CPPUNIT_INCLUDE_DIRS}
28   ${CMAKE_CURRENT_SOURCE_DIR}/../ParaMEDLoader
29   ${CMAKE_CURRENT_SOURCE_DIR}/../ParaMEDMEM
30   ${CMAKE_CURRENT_SOURCE_DIR}/../ParaMEDMEM/MPIAccess
31   ${CMAKE_CURRENT_SOURCE_DIR}/../MEDLoader
32   ${CMAKE_CURRENT_SOURCE_DIR}/../MEDCoupling
33   ${CMAKE_CURRENT_SOURCE_DIR}/../ICoCo
34   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL
35   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases
36   ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNELTest   # for TestIKUtils.hxx
37   )
38
39 SET(ParaMEDMEMTest_SOURCES
40   ParaMEDMEMTest.cxx
41   ParaMEDMEMTest_MPIProcessorGroup.cxx
42   ParaMEDMEMTest_BlockTopology.cxx
43   ParaMEDMEMTest_InterpKernelDEC.cxx
44   ParaMEDMEMTest_StructuredCoincidentDEC.cxx
45   ParaMEDMEMTest_ICoco.cxx
46   ParaMEDMEMTest_Gauthier1.cxx
47   ParaMEDMEMTest_FabienAPI.cxx
48   ParaMEDMEMTest_NonCoincidentDEC.cxx
49   ParaMEDMEMTest_OverlapDEC.cxx
50   ParaMEDMEMTest_MEDLoader.cxx
51 )
52
53 ADD_LIBRARY(ParaMEDMEMTest ${ParaMEDMEMTest_SOURCES})
54 SET_TARGET_PROPERTIES(ParaMEDMEMTest PROPERTIES COMPILE_FLAGS "")
55 TARGET_LINK_LIBRARIES(ParaMEDMEMTest paramedmem paramedloader medcouplingremapper InterpKernelTestUtils ${CPPUNIT_LIBRARIES})
56 INSTALL(TARGETS ParaMEDMEMTest DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
57
58 SET(TESTSParaMEDMEM)
59 SET(TestParaMEDMEM_SOURCES
60   TestParaMEDMEM.cxx
61   )
62 LIST(APPEND TESTSParaMEDMEM TestParaMEDMEM)
63
64 SET(test_perf_SOURCES
65   test_perf.cxx
66   )
67 LIST(APPEND TESTSParaMEDMEM test_perf)
68
69 IF(MPI2_IS_OK)
70   SET(ParaMEDMEMTestMPI2_1_SOURCES
71     MPI2Connector.cxx
72     ParaMEDMEMTestMPI2_1.cxx
73     )
74   LIST(APPEND TESTSParaMEDMEM ParaMEDMEMTestMPI2_1)
75
76   SET(ParaMEDMEMTestMPI2_2_SOURCES
77     MPI2Connector.cxx
78     ParaMEDMEMTestMPI2_2.cxx
79     )
80   LIST(APPEND TESTSParaMEDMEM ParaMEDMEMTestMPI2_2)
81 ENDIF(MPI2_IS_OK)
82
83 FOREACH(bintestparamem ${TESTSParaMEDMEM})
84   ADD_EXECUTABLE(${bintestparamem} ${${bintestparamem}_SOURCES})
85   TARGET_LINK_LIBRARIES(${bintestparamem} ParaMEDMEMTest)
86 ENDFOREACH(bintestparamem ${TESTSParaMEDMEM})
87
88 # Now add CMake tests - test_perf, ParaMEDMEMTestMPI2_1 and ParaMEDMEMTestMPI2_2
89 # are left aside, as they are too specific
90 #
91 SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env)
92
93 #  -- some tests require 2, 3, 4 or 5 procs --
94 # MPICH does not support --oversubscribe:
95 IF(NOT ${MPIEXEC_EXECUTABLE} MATCHES "mpich")
96     SET(_oversub_opt "--oversubscribe")
97 ENDIF()
98
99 ADD_TEST(NAME TestParaMEDMEM_Proc2 COMMAND ${MPIEXEC} -np 2  ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
100 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc2 PROPERTIES ENVIRONMENT "${tests_env}")
101 ADD_TEST(NAME TestParaMEDMEM_Proc3 COMMAND ${MPIEXEC} -np 3 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
102 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc3 PROPERTIES ENVIRONMENT "${tests_env}")
103 ADD_TEST(NAME TestParaMEDMEM_Proc4 COMMAND ${MPIEXEC} -np 4 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
104 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc4 PROPERTIES ENVIRONMENT "${tests_env}")
105 ADD_TEST(NAME TestParaMEDMEM_Proc5 COMMAND ${MPIEXEC} -np 5 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
106 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc5 PROPERTIES ENVIRONMENT "${tests_env}")
107
108 # Installation rules
109 INSTALL(TARGETS ${TESTSParaMEDMEM} DESTINATION ${MEDCOUPLING_INSTALL_BINS})
110 SET(COMMON_HEADERS_HXX
111   MPIMainTest.hxx
112   ParaMEDMEMTest.hxx
113   MPI2Connector.hxx
114 )
115 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${MEDCOUPLING_INSTALL_HEADERS})
116
117 # Application tests
118
119 SET(TEST_INSTALL_DIRECTORY ${MEDCOUPLING_INSTALL_TESTS}/ParaMEDMEMTest)
120 INSTALL(TARGETS ${TESTSParaMEDMEM} DESTINATION ${TEST_INSTALL_DIRECTORY})
121
122 # export MPIEXEC and _oversub_opt to CTestTestfile.cmake of salome test mechanism
123 CONFIGURE_FILE(CTestTestfileInstall.cmake.in "CTestTestfileST.cmake" @ONLY)
124 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/CTestTestfileST.cmake DESTINATION ${TEST_INSTALL_DIRECTORY} RENAME CTestTestfile.cmake)