Continuous integration tests

Basic use

mmg applications may be test by enabling and running the continuous integration tests. It is recommended to run the tests in debug mode:

cmake -D CMAKE_BUILD_TYPE=Debug -D BUILD_TESTING=ON ..
make
ctest

Advanced use

Tests may be enabled or disabled using the CMake variables. Check out the install section for a list of these options. The following example command configures CTest to enable library tests for mmg3d only:

cmake -D TEST_LIBMMG3D=ON ..