e7c6498c0dc05e82afed96bafd27b1d9e0f17d47
[alexxy/gromacs.git] / src / api / cpp / tests / CMakeLists.txt
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
5 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 # and including many others, as listed in the AUTHORS file in the
7 # top-level source directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34
35 # For an executable target already defined, CMake tests are added with the
36 # following syntax:
37 #
38 # add_test(NAME <name> [CONFIGURATIONS [Debug|Release|...]]
39 #            [WORKING_DIRECTORY dir]
40 #            COMMAND <command> [arg1 [arg2 ...]])
41 #
42 # The GROMACS convention to get the appropriate compilation environment for
43 # unit tests is the gmx_add_unit_test macro, defined in
44 # src/testutils/TestMacros.cmake, which does not allow arbitrary argument
45 # passing to add_test. Instead, use set_tests_properties().
46
47 #
48 # Test public interface.
49 #
50
51 add_library(gmxapi-testsupport INTERFACE)
52 target_include_directories(gmxapi-testsupport INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
53
54 gmx_add_gtest_executable(gmxapi-test
55     CPP_SOURCE_FILES
56         restraint.cpp
57         status.cpp
58         system.cpp
59         version.cpp
60         # pseudo-library for code for mdrun
61         $<TARGET_OBJECTS:mdrun_objlib>
62         )
63 if(NOT GMX_USE_OPENCL)
64     # GPU resources may not be properly reinitialized between simulations in
65     # the same process.
66     # TODO: include this with the other test sources once the issue is resolved
67     # Ref https://gitlab.com/gromacs/gromacs/-/issues/2689
68     target_sources(gmxapi-test PRIVATE runner.cpp stopsignaler.cpp)
69 endif()
70
71 # Link against the gmxapi libraries and get access to its public (installed) headers.
72 target_link_libraries(gmxapi-test PRIVATE Gromacs::gmxapi gmxapi-testsupport mdrun_test_infrastructure)
73
74 gmx_register_gtest_test(GmxapiExternalInterfaceTests gmxapi-test OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
75
76 set_tests_properties(GmxapiExternalInterfaceTests PROPERTIES
77                      WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
78
79 #
80 # Test public interface with MPI.
81 #
82
83 gmx_add_gtest_executable(gmxapi-mpi-test MPI
84     CPP_SOURCE_FILES
85         restraint.cpp
86         status.cpp
87         system.cpp
88         version.cpp
89         # pseudo-library for code for mdrun
90         $<TARGET_OBJECTS:mdrun_objlib>
91         )
92 if(NOT GMX_USE_OPENCL)
93     # GPU resources may not be properly reinitialized between simulations in
94     # the same process.
95     # TODO: include this with the other test sources once the issue is resolved
96     # Ref https://gitlab.com/gromacs/gromacs/-/issues/2689
97     target_sources(gmxapi-mpi-test PRIVATE runner.cpp stopsignaler.cpp)
98 endif()
99
100 target_include_directories(gmxapi-mpi-test PRIVATE
101                            ${CMAKE_CURRENT_SOURCE_DIR})
102 target_link_libraries(gmxapi-mpi-test PRIVATE Gromacs::gmxapi gmxapi-testsupport mdrun_test_infrastructure)
103
104 gmx_register_gtest_test(GmxapiMpiTests gmxapi-mpi-test MPI_RANKS 2 OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)