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} ${HDF5_DEFINITIONS} ${MEDFILE_DEFINITIONS})
26 ${MEDFILE_INCLUDE_DIRS}
28 ${CPPUNIT_INCLUDE_DIRS}
29 ${CMAKE_CURRENT_SOURCE_DIR}/../ParaMEDLoader
30 ${CMAKE_CURRENT_SOURCE_DIR}/../ParaMEDMEM
31 ${CMAKE_CURRENT_SOURCE_DIR}/../ParaMEDMEM/MPIAccess
32 ${CMAKE_CURRENT_SOURCE_DIR}/../MEDLoader
33 ${CMAKE_CURRENT_SOURCE_DIR}/../MEDCoupling
34 ${CMAKE_CURRENT_SOURCE_DIR}/../ICoCo
35 ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL
36 ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNEL/Bases
37 ${CMAKE_CURRENT_SOURCE_DIR}/../INTERP_KERNELTest # for TestIKUtils.hxx
40 SET(ParaMEDMEMTest_SOURCES
42 ParaMEDMEMTest_MPIProcessorGroup.cxx
43 ParaMEDMEMTest_BlockTopology.cxx
44 ParaMEDMEMTest_InterpKernelDEC.cxx
45 ParaMEDMEMTest_StructuredCoincidentDEC.cxx
46 ParaMEDMEMTest_ICoco.cxx
47 ParaMEDMEMTest_Gauthier1.cxx
48 ParaMEDMEMTest_FabienAPI.cxx
49 ParaMEDMEMTest_NonCoincidentDEC.cxx
50 ParaMEDMEMTest_OverlapDEC.cxx
51 ParaMEDMEMTest_MEDLoader.cxx
54 ADD_LIBRARY(ParaMEDMEMTest ${ParaMEDMEMTest_SOURCES})
55 SET_TARGET_PROPERTIES(ParaMEDMEMTest PROPERTIES COMPILE_FLAGS "")
56 TARGET_LINK_LIBRARIES(ParaMEDMEMTest paramedmem paramedloader medcouplingremapper InterpKernelTestUtils ${CPPUNIT_LIBRARIES})
57 INSTALL(TARGETS ParaMEDMEMTest DESTINATION ${MEDCOUPLING_INSTALL_LIBS})
60 SET(TestParaMEDMEM_SOURCES
63 LIST(APPEND TESTSParaMEDMEM TestParaMEDMEM)
68 LIST(APPEND TESTSParaMEDMEM test_perf)
71 SET(ParaMEDMEMTestMPI2_1_SOURCES
73 ParaMEDMEMTestMPI2_1.cxx
75 LIST(APPEND TESTSParaMEDMEM ParaMEDMEMTestMPI2_1)
77 SET(ParaMEDMEMTestMPI2_2_SOURCES
79 ParaMEDMEMTestMPI2_2.cxx
81 LIST(APPEND TESTSParaMEDMEM ParaMEDMEMTestMPI2_2)
84 FOREACH(bintestparamem ${TESTSParaMEDMEM})
85 ADD_EXECUTABLE(${bintestparamem} ${${bintestparamem}_SOURCES})
86 TARGET_LINK_LIBRARIES(${bintestparamem} ParaMEDMEMTest)
87 ENDFOREACH(bintestparamem ${TESTSParaMEDMEM})
89 # Now add CMake tests - test_perf, ParaMEDMEMTestMPI2_1 and ParaMEDMEMTestMPI2_2
90 # are left aside, as they are too specific
92 SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env)
94 # -- some tests require 2, 3, 4 or 5 procs --
95 # MPICH does not support --oversubscribe:
96 IF(NOT ${MPIEXEC_EXECUTABLE} MATCHES "mpich")
97 SET(_oversub_opt "--oversubscribe")
100 ADD_TEST(NAME TestParaMEDMEM_Proc2 COMMAND ${MPIEXEC} -np 2 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
101 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc2 PROPERTIES ENVIRONMENT "${tests_env}")
102 ADD_TEST(NAME TestParaMEDMEM_Proc3 COMMAND ${MPIEXEC} -np 3 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
103 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc3 PROPERTIES ENVIRONMENT "${tests_env}")
104 ADD_TEST(NAME TestParaMEDMEM_Proc4 COMMAND ${MPIEXEC} -np 4 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
105 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc4 PROPERTIES ENVIRONMENT "${tests_env}")
106 ADD_TEST(NAME TestParaMEDMEM_Proc5 COMMAND ${MPIEXEC} -np 5 ${_oversub_opt} $<TARGET_FILE:TestParaMEDMEM>)
107 SET_TESTS_PROPERTIES(TestParaMEDMEM_Proc5 PROPERTIES ENVIRONMENT "${tests_env}")
110 INSTALL(TARGETS ${TESTSParaMEDMEM} DESTINATION ${MEDCOUPLING_INSTALL_BINS})
111 SET(COMMON_HEADERS_HXX
116 INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${MEDCOUPLING_INSTALL_HEADERS})
120 SET(TEST_INSTALL_DIRECTORY ${MEDCOUPLING_INSTALL_TESTS}/ParaMEDMEMTest)
121 INSTALL(TARGETS ${TESTSParaMEDMEM} DESTINATION ${TEST_INSTALL_DIRECTORY})
123 # export MPIEXEC and _oversub_opt to CTestTestfile.cmake of salome test mechanism
124 CONFIGURE_FILE(CTestTestfileInstall.cmake.in "CTestTestfileST.cmake" @ONLY)
125 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/CTestTestfileST.cmake DESTINATION ${TEST_INSTALL_DIRECTORY} RENAME CTestTestfile.cmake)