summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/doc/installation.h5
-rw-r--r--src/python/doc/installation.rst12
2 files changed, 16 insertions, 1 deletions
diff --git a/src/common/doc/installation.h b/src/common/doc/installation.h
index c320e7e0..c4ca10d1 100644
--- a/src/common/doc/installation.h
+++ b/src/common/doc/installation.h
@@ -32,7 +32,10 @@ make \endverbatim
*
* \subsection testsuites Test suites
* To test your build, run the following command in a terminal:
- * \verbatim make test \endverbatim
+ * \verbatim make test \endverbatim
+ * `make test` is using <a href="https://cmake.org/cmake/help/latest/manual/ctest.1.html">Ctest<\a> (CMake test driver
+ * program). If some of the tests are failing, plend send us the result of the following command:
+ * \verbatim ctest --output-on-failure \endverbatim
*
* \subsection documentationgeneration Documentation
* To generate the documentation, <a target="_blank" href="http://www.doxygen.org/">Doxygen</a> is required.
diff --git a/src/python/doc/installation.rst b/src/python/doc/installation.rst
index 54504413..3553ae51 100644
--- a/src/python/doc/installation.rst
+++ b/src/python/doc/installation.rst
@@ -98,6 +98,18 @@ following command in a terminal:
export PYTHONPATH='$PYTHONPATH:/path-to-gudhi/build/python'
make test
+`make test` is using
+`Ctest <https://cmake.org/cmake/help/latest/manual/ctest.1.html>`_ (CMake test
+driver program). If some of the tests are failing, plend send us the result of
+the following command:
+
+.. code-block:: bash
+
+ cd /path-to-gudhi/build/python
+ # For windows, you have to set PYTHONPATH environment variable
+ export PYTHONPATH='$PYTHONPATH:/path-to-gudhi/build/python'
+ ctest --output-on-failure
+
Debugging issues
================