Help: Add cuda-memcheck to CTest documentation

Issue: #21388
This commit is contained in:
Tobias Ribizel 2020-11-05 15:43:57 +01:00 committed by Brad King
parent fb98883e2b
commit e620bb7293
2 changed files with 17 additions and 3 deletions

View File

@ -1142,6 +1142,20 @@ Additional configuration settings include:
* `CTest Script`_ variable: none
* :module:`CTest` module variable: ``DRMEMORY_COMMAND_OPTIONS``
``CudaMemcheckCommand``
Specify a ``MemoryCheckCommand`` that is known to be a command-line
compatible with cuda-memcheck or compute-sanitizer.
* `CTest Script`_ variable: none
* :module:`CTest` module variable: ``CUDA_MEMCHECK_COMMAND``
``CudaMemcheckCommandOptions``
Specify command-line options to the ``CudaMemcheckCommand`` tool.
They will be placed prior to the test command line.
* `CTest Script`_ variable: none
* :module:`CTest` module variable: ``CUDA_MEMCHECK_COMMAND_OPTIONS``
.. _`CTest Submit Step`:
CTest Submit Step

View File

@ -5,6 +5,6 @@ CTEST_MEMORYCHECK_TYPE
Specify the CTest ``MemoryCheckType`` setting
in a :manual:`ctest(1)` dashboard client script.
Valid values are ``Valgrind``, ``Purify``, ``BoundsChecker``, ``DrMemory`` and
``ThreadSanitizer``, ``AddressSanitizer``, ``LeakSanitizer``, ``MemorySanitizer``, and
``UndefinedBehaviorSanitizer``.
Valid values are ``Valgrind``, ``Purify``, ``BoundsChecker``, ``DrMemory``,
``CudaMemcheck``, ``ThreadSanitizer``, ``AddressSanitizer``, ``LeakSanitizer``,
``MemorySanitizer`` and ``UndefinedBehaviorSanitizer``.