Moved generic simulationdatabase code to testutils.
[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, 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 gmx_add_gtest_executable(
52     gmxapi-test
53     restraint.cpp
54     status.cpp
55     system.cpp
56     version.cpp
57     # pseudo-library for code for testing mdrun
58     $<TARGET_OBJECTS:mdrun_test_objlib>
59     # pseudo-library for code for mdrun
60     $<TARGET_OBJECTS:mdrun_objlib>
61     )
62 if(NOT GMX_USE_OPENCL)
63     # GPU resources may not be properly reinitialized between simulations in
64     # the same process.
65     # TODO: include this with the other test sources once the issue is resolved
66     # Ref https://redmine.gromacs.org/issues/2689
67     target_sources(gmxapi-test PRIVATE runner.cpp stopsignaler.cpp)
68 endif()
69
70 target_include_directories(gmxapi-test PRIVATE
71                            ${CMAKE_CURRENT_SOURCE_DIR})
72
73 # Link against the gmxapi libraries and get access to its public (installed) headers.
74 target_link_libraries(gmxapi-test Gromacs::gmxapi)
75
76 gmx_register_gtest_test(GmxapiExternalInterfaceTests gmxapi-test INTEGRATION_TEST)
77
78 set_tests_properties(GmxapiExternalInterfaceTests PROPERTIES
79                      WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
80
81 #
82 # Test public interface with MPI.
83 #
84
85 gmx_add_gtest_executable(
86     gmxapi-mpi-test MPI
87     restraint.cpp
88     status.cpp
89     system.cpp
90     version.cpp
91     # pseudo-library for code for testing mdrun
92     $<TARGET_OBJECTS:mdrun_test_objlib>
93     # pseudo-library for code for mdrun
94     $<TARGET_OBJECTS:mdrun_objlib>
95     )
96 if(NOT GMX_USE_OPENCL)
97     # GPU resources may not be properly reinitialized between simulations in
98     # the same process.
99     # TODO: include this with the other test sources once the issue is resolved
100     # Ref https://redmine.gromacs.org/issues/2689
101     target_sources(gmxapi-mpi-test PRIVATE runner.cpp stopsignaler.cpp)
102 endif()
103
104 target_include_directories(gmxapi-mpi-test PRIVATE
105                            ${CMAKE_CURRENT_SOURCE_DIR})
106 target_link_libraries(gmxapi-mpi-test Gromacs::gmxapi)
107
108 gmx_register_gtest_test(GmxapiMpiTests gmxapi-mpi-test MPI_RANKS 2 INTEGRATION_TEST)