Allow access to optional outside libgromacs
[alexxy/gromacs.git] / src / programs / mdrun / tests / CMakeLists.txt
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2013,2014,2015,2016,2017 by 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.
9 #
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.
14 #
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.
19 #
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.
24 #
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.
32 #
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.
35
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
39     energyreader.cpp
40     energycomparison.cpp
41     moduletest.cpp
42     mdmodulenotification.cpp
43     terminationhelper.cpp
44     trajectorycomparison.cpp
45     trajectoryreader.cpp
46     )
47 target_include_directories(mdrun_test_infrastructure SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/src/external)
48
49 set(testname "MdrunTests")
50 set(exename "mdrun-test")
51
52 gmx_add_gtest_executable(
53     ${exename}
54     # files with code for tests
55     compressed_x_output.cpp
56     densityfittingmodule.cpp
57     exactcontinuation.cpp
58     grompp.cpp
59     helpwriting.cpp
60     initialconstraints.cpp
61     interactiveMD.cpp
62     outputfiles.cpp
63     pmetest.cpp
64     simulator.cpp
65     swapcoords.cpp
66     tabulated_bonded_interactions.cpp
67     termination.cpp
68     trajectory_writing.cpp
69     mimic.cpp
70     # pseudo-library for code for mdrun
71     $<TARGET_OBJECTS:mdrun_objlib>
72     )
73 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
74 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST)
75
76 # To avoid running into test timeouts, some end-to-end tests of mdrun
77 # functionality are split off. This can be rearranged in future as we
78 # see fit.
79 set(testname "MdrunNonIntegratorTests")
80 set(exename "mdrun-non-integrator-test")
81
82 gmx_add_gtest_executable(
83     ${exename}
84     # files with code for tests
85     minimize.cpp
86     nonbonded_bench.cpp
87     normalmodes.cpp
88     rerun.cpp
89     simple_mdrun.cpp
90     # pseudo-library for code for mdrun
91     $<TARGET_OBJECTS:mdrun_objlib>
92     )
93 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
94 gmx_register_gtest_test(${testname} ${exename} OPENMP_THREADS 2 INTEGRATION_TEST)
95
96 # TPI does not support OpenMP, so we need a separate test binary
97 set(testname "MdrunTpiTests")
98 set(exename "mdrun-tpi-test")
99
100 gmx_add_gtest_executable(
101     ${exename}
102     # files with code for tests
103     tpitest.cpp
104     # pseudo-library for code for mdrun
105     $<TARGET_OBJECTS:mdrun_objlib>
106     )
107 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
108 gmx_register_gtest_test(${testname} ${exename} INTEGRATION_TEST)
109
110 # Tests that only make sense to run with multiple ranks and/or real
111 # MPI are implemented here.
112 set(testname "MdrunMpiTests")
113 set(exename "mdrun-mpi-test")
114
115 gmx_add_gtest_executable(
116     ${exename} MPI
117     # files with code for tests
118     domain_decomposition.cpp
119     minimize.cpp
120     mimic.cpp
121     multisim.cpp
122     multisimtest.cpp
123     pmetest.cpp
124     replicaexchange.cpp
125     # pseudo-library for code for mdrun
126     $<TARGET_OBJECTS:mdrun_objlib>
127     )
128 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
129 gmx_register_gtest_test(${testname} ${exename} MPI_RANKS 2 OPENMP_THREADS 2 INTEGRATION_TEST)
130
131 # Slow-running tests that target testing multiple-rank coordination behaviors
132 set(exename "mdrun-mpi-coordination-test")
133 gmx_add_gtest_executable(
134     ${exename} MPI
135     # files with code for tests
136     periodicactions.cpp
137     # pseudo-library for code for mdrun
138     $<TARGET_OBJECTS:mdrun_objlib>
139     )
140 target_link_libraries(${exename} PRIVATE mdrun_test_infrastructure)
141
142 # These tests are extremely slow without optimization or OpenMP, so only run them for
143 # build types like Release or RelWithDebInfo and if the build has been configured
144 # with OpenMP enabled.
145 if (CMAKE_BUILD_TYPE MATCHES "Rel" AND GMX_OPENMP)
146     set(testname "MdrunMpiCoordinationTestsOneRank")
147     gmx_register_gtest_test(${testname} ${exename} MPI_RANKS 1 SLOW_TEST)
148     set(testname "MdrunMpiCoordinationTestsTwoRanks")
149     gmx_register_gtest_test(${testname} ${exename} MPI_RANKS 2 SLOW_TEST)
150 endif()