Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions doc/superbuild/source/developers/testing/CTest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,59 @@ sanitizers. These can be enabled with the following CMake options.
``-fsanitize=undefined`` flag.

Default: OFF

Labels
------

The following labels are associated with examples and tests.
To run a subset of these examples and tests,
follow `CTest instructions <https://cmake.org/cmake/help/latest/manual/ctest.1.html#label-matching>`__.

Package labels
^^^^^^^^^^^^^^

======== ========================================
Labels Coverage
======== ========================================
arkode ARKODE package
======== ========================================

Module labels
^^^^^^^^^^^^^

================ ========================================
Labels Coverage
================ ========================================
linsol Linear solver
linsol_klu Linear solver with KLU backend
logging Logging
matrix Matrix
matrix_sparse Sparse matrix
nvector NVector
================ ========================================

Method labels
^^^^^^^^^^^^^

======== ========================================
Labels Coverage
======== ========================================
dirk Diagonally implicit Runge-Kutta methods
======== ========================================

Parallelism labels
^^^^^^^^^^^^^^^^^^
================ ========================================
Labels Coverage
================ ========================================
nvector_serial NVector with serial backend
================ ========================================

Language labels
^^^^^^^^^^^^^^^

======== ========================================
Labels Coverage
======== ========================================
c C language
======== ========================================
4 changes: 3 additions & 1 deletion examples/arkode/C_klu/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ foreach(example_tuple ${examples_list})
TEST_ARGS ${example_args}
ANSWER_DIR ${CMAKE_CURRENT_SOURCE_DIR}
ANSWER_FILE ${test_name}.out
EXAMPLE_TYPE ${example_type})
EXAMPLE_TYPE ${example_type}
LABELS c arkode nvector nvector_serial linsol linsol_klu matrix
matrix_sparse dirk)

endforeach()

Expand Down