2 # This file is part of the GROMACS molecular simulation package.
4 # Copyright (c) 2013,2014,2015,2016,2017 The GROMACS development team.
5 # Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
6 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 # and including many others, as listed in the AUTHORS file in the
8 # top-level source directory and at http://www.gromacs.org.
10 # GROMACS is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public License
12 # as published by the Free Software Foundation; either version 2.1
13 # of the License, or (at your option) any later version.
15 # GROMACS is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 # Lesser General Public License for more details.
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with GROMACS; if not, see
22 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 # If you want to redistribute modifications to GROMACS, please
26 # consider that scientific software is very special. Version
27 # control is crucial - bugs must be traceable. We will be happy to
28 # consider code for inclusion in the official distribution, but
29 # derived work must not be called official GROMACS. Details are found
30 # in the README & COPYING files - if they are missing, get the
31 # official version at http://www.gromacs.org.
33 # To help us fund GROMACS development, we humbly ask that you cite
34 # the research papers on the package. Check out http://www.gromacs.org.
36 # Make a static library for test infrastructure code that we re-use
37 # in multiple test executables across the repository.
38 gmx_add_unit_test_library(mdrun_test_infrastructure
42 simulatorcomparison.cpp
44 trajectorycomparison.cpp
46 # pseudo-library for code for mdrun
47 $<TARGET_OBJECTS:mdrun_objlib>
49 target_include_directories(mdrun_test_infrastructure SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/src/external)
51 # To avoid running into test timeouts, some end-to-end tests of mdrun
52 # functionality are split off. This can be rearranged in future as we
54 set(testname "MdrunOutputTests")
55 set(exename "mdrun-output-test")
57 gmx_add_gtest_executable(${exename}
59 compressed_x_output.cpp
62 trajectory_writing.cpp
63 # pseudo-library for code for mdrun
64 $<TARGET_OBJECTS:mdrun_objlib>
66 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
67 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
69 set(testname "MdrunModulesTests")
70 set(exename "mdrun-modules-test")
72 gmx_add_gtest_executable(${exename}
74 densityfittingmodule.cpp
77 # pseudo-library for code for mdrun
78 $<TARGET_OBJECTS:mdrun_objlib>
80 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
81 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
83 set(testname "MdrunIOTests")
84 set(exename "mdrun-io-test")
86 gmx_add_gtest_executable(${exename}
90 initialconstraints.cpp
92 # pseudo-library for code for mdrun
93 $<TARGET_OBJECTS:mdrun_objlib>
95 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
96 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
98 set(testname "MdrunTests")
99 set(exename "mdrun-test")
101 gmx_add_gtest_executable(${exename}
107 tabulated_bonded_interactions.cpp
108 # pseudo-library for code for mdrun
109 $<TARGET_OBJECTS:mdrun_objlib>
111 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
112 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
115 set(testname "MdrunPmeTests")
116 set(exename "mdrun-pme-test")
118 gmx_add_gtest_executable(${exename}
121 # pseudo-library for code for mdrun
122 $<TARGET_OBJECTS:mdrun_objlib>
124 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
125 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
128 set(testname "MdrunNonIntegratorTests")
129 set(exename "mdrun-non-integrator-test")
131 gmx_add_gtest_executable(${exename}
133 # files with code for tests
139 # pseudo-library for code for mdrun
140 $<TARGET_OBJECTS:mdrun_objlib>
142 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
143 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
145 # TPI does not support OpenMP, so we need a separate test binary
146 set(testname "MdrunTpiTests")
147 set(exename "mdrun-tpi-test")
149 gmx_add_gtest_executable(${exename}
151 # files with code for tests
153 # pseudo-library for code for mdrun
154 $<TARGET_OBJECTS:mdrun_objlib>
156 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
157 gmx_register_gtest_test(${testname} ${exename} INTEGRATION_TEST IGNORE_LEAKS)
159 # Tests that only make sense to run with multiple ranks and/or real
160 # MPI are implemented here.
161 set(testname "MdrunMpiTests")
162 set(exename "mdrun-mpi-test")
164 gmx_add_gtest_executable(${exename} MPI
166 # files with code for tests
167 domain_decomposition.cpp
174 # pseudo-library for code for mdrun
175 $<TARGET_OBJECTS:mdrun_objlib>
177 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
178 gmx_register_gtest_test(${testname} ${exename} MPI_RANKS 2 OPENMP_THREADS 2 INTEGRATION_TEST IGNORE_LEAKS)
180 # Slow-running tests that target testing multiple-rank coordination behaviors
181 set(exename "mdrun-mpi-coordination-test")
182 gmx_add_gtest_executable(${exename} MPI
184 # files with code for tests
186 # pseudo-library for code for mdrun
187 $<TARGET_OBJECTS:mdrun_objlib>
189 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
191 # These tests are extremely slow without optimization or OpenMP, so only run them for
192 # build types like Release or RelWithDebInfo and if the build has been configured
193 # with OpenMP enabled.
194 if (CMAKE_BUILD_TYPE MATCHES "Rel" AND GMX_OPENMP)
195 set(testname "MdrunMpiCoordinationTestsOneRank")
196 gmx_register_gtest_test(${testname} ${exename} MPI_RANKS 1 SLOW_TEST IGNORE_LEAKS)
197 set(testname "MdrunMpiCoordinationTestsTwoRanks")
198 gmx_register_gtest_test(${testname} ${exename} MPI_RANKS 2 SLOW_TEST IGNORE_LEAKS)