1 # Copyright (C) 2012-2024 CEA, EDF
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 ADD_SUBDIRECTORY(MPIAccess) # maybe to delete one day ...
22 ADD_DEFINITIONS(${MPI_DEFINITIONS} ${CPPUNIT_DEFINITIONS})
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
39 SET(ParaMEDMEMTest_SOURCES
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
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})
59 SET(TestParaMEDMEM_SOURCES
62 LIST(APPEND TESTSParaMEDMEM TestParaMEDMEM)
67 LIST(APPEND TESTSParaMEDMEM test_perf)
70 SET(ParaMEDMEMTestMPI2_1_SOURCES
72 ParaMEDMEMTestMPI2_1.cxx
74 LIST(APPEND TESTSParaMEDMEM ParaMEDMEMTestMPI2_1)
76 SET(ParaMEDMEMTestMPI2_2_SOURCES
78 ParaMEDMEMTestMPI2_2.cxx
80 LIST(APPEND TESTSParaMEDMEM ParaMEDMEMTestMPI2_2)
83 FOREACH(bintestparamem ${TESTSParaMEDMEM})
84 ADD_EXECUTABLE(${bintestparamem} ${${bintestparamem}_SOURCES})
85 TARGET_LINK_LIBRARIES(${bintestparamem} ParaMEDMEMTest)
86 ENDFOREACH(bintestparamem ${TESTSParaMEDMEM})
88 # Now add CMake tests - test_perf, ParaMEDMEMTestMPI2_1 and ParaMEDMEMTestMPI2_2
89 # are left aside, as they are too specific
91 SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env)
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")
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}")
109 INSTALL(TARGETS ${TESTSParaMEDMEM} DESTINATION ${MEDCOUPLING_INSTALL_BINS})
110 SET(COMMON_HEADERS_HXX
115 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${MEDCOUPLING_INSTALL_HEADERS})
119 SET(TEST_INSTALL_DIRECTORY ${MEDCOUPLING_INSTALL_TESTS}/ParaMEDMEMTest)
120 INSTALL(TARGETS ${TESTSParaMEDMEM} DESTINATION ${TEST_INSTALL_DIRECTORY})
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)