Skip to content

Commit

Permalink
Add section 'How to use TriBITS testing support in non-TriBITS projec…
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlettroscoe committed Sep 14, 2023
1 parent eddbfc1 commit fa9355f
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 0 deletions.
1 change: 1 addition & 0 deletions tribits/doc/guides/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/TribitsCommonTPLsList.txt.tmp
/TribitsExampleProject2_Package1_CMakeLists.raw.external.cmake*
/TribitsExampleProject2_Package1_CMakeLists.raw.internal.cmake*
/TribitsExampleProject2_Package1_CMakeLists.raw.tribits_test.cmake*
/TribitsGitVersion.txt
/TribitsGitVersion.txt.tmp
/TribitsHelloWorldDirAndFiles.txt
Expand Down
67 changes: 67 additions & 0 deletions tribits/doc/guides/TribitsGuidesBody.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6420,6 +6420,73 @@ differences are:
compliant).


How to use TriBITS testing support in non-TriBITS project
---------------------------------------------------------

The TriBITS test support functions `tribits_add_test()`_ and
`tribits_add_advanced_test()`_ can be used from any raw (i.e. non-TriBITS)
CMake project. To do so, one just needs to include the TriBITS modules:

* ``<tribitsDir>/core/test_support/TribitsAddTest.cmake``
* and ``<tribitsDir>/core/test_support/TribitsAddAdvancedTest.cmake``

and set the variable ``${PROJECT_NAME}_ENABLE_TESTS`` to ``ON``. For an
MPI-enabled CMake project, one needs to define the following CMake variables
``MPI_EXEC``, ``MPI_EXEC_PRE_NUMPROCS_FLAGS``, ``MPI_EXEC_NUMPROCS_FLAG`` and
``MPI_EXEC_POST_NUMPROCS_FLAGS`` which define the MPI runtime program launcher
command-line used in these TriBITS testing functions::

${MPI_EXEC} ${MPI_EXEC_PRE_NUMPROCS_FLAGS}
${MPI_EXEC_NUMPROCS_FLAG} <NP>
${MPI_EXEC_POST_NUMPROCS_FLAGS}
<TEST_EXECUTABLE_PATH> <TEST_ARGS>

(These are defined automatically in a TriBITS project.)

This is demonstrated in the `TribitsExampleProject2`_ project ``Package1``
package. The base ``CMakeLists.txt`` file for building ``Package1`` with a
raw CMake build system using TriBITS testing functions (called
``CMakeLists.raw.cmake`` in that directory) looks like:

.. include:: TribitsExampleProject2_Package1_CMakeLists.raw.tribits_test.cmake
:literal:

The only difference between this base ``CMakeLists.txt`` file and one for a
raw CMake project is the inclusion of the file
``package1/cmake/raw/EnableTribitsTestSupport.cmake`` which has the contents:

.. include:: ../../examples/TribitsExampleProject2/packages/package1/cmake/raw/EnableTribitsTestSupport.cmake
:literal:

The key lines are::

include("${Package1_TRIBITS_DIR}/core/test_support/TribitsAddTest.cmake")
include("${Package1_TRIBITS_DIR}/core/test_support/TribitsAddAdvancedTest.cmake")

This defines the CMake functions `tribits_add_test()`_ and
`tribits_add_advanced_test()`_.

The above code demonstrates that ``CMAKE_MODULE_PATH`` does **not** need to be
updated to use these TriBITS ``test_support`` modules. However, one is free
to update ``CMAKE_MODULE_PATH`` and then include the modules by name only
like::

list(PREPEND CMAKE_MODULE_PATH "${Package1_TRIBITS_DIR}/core/test_support")
include(TribitsAddTest)
include(TribitsAddAdvancedTest)

Once these TriBITS modules are included, one can use the TriBITS functions as
demonstrated in the ``package1/test/CMakeLists.tribits.cmake`` file (which is
included from the file ``package1/test/CMakeLists.txt``) and has the contents:

.. include:: ../../examples/TribitsExampleProject2/packages/package1/test/CMakeLists.tribits.cmake
:literal:

Note that in this example, the executable ``package1-prg`` was already
created. If new test libraries and executables need to be created, then the
raw CMake commands to create those will need to be added as well.


How to check for and tweak TriBITS "ENABLE" cache variables
-----------------------------------------------------------

Expand Down
9 changes: 9 additions & 0 deletions tribits/doc/guides/generate-guide.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,15 @@ function tribits_extract_other_doc {
&> TribitsExampleProject2_Package1_CMakeLists.raw.internal.cmake.tmp
update_if_different TribitsExampleProject2_Package1_CMakeLists.raw.internal.cmake tmp

cat ../../examples/TribitsExampleProject2/packages/package1/CMakeLists.raw.cmake \
| grep -v "that TriBITS does automatically" \
| grep -v DefineAllLibsTarget \
| grep -v GeneratePackageConfigFileForBuildDir \
| grep -v GeneratePackageConfigFileForInstallDir \
&> TribitsExampleProject2_Package1_CMakeLists.raw.tribits_test.cmake.tmp
update_if_different \
TribitsExampleProject2_Package1_CMakeLists.raw.tribits_test.cmake tmp

echo
echo "Generating output for 'checkin-test.py --help' ..."
echo
Expand Down

0 comments on commit fa9355f

Please sign in to comment.