summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-09 10:29:02 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-09 10:29:02 +0100
commit5385b57782d63cf86048762e9a1c9b0c1070930c (patch)
treedf24ee829c0bd0bbd736507d62d9ed6755a7b23d
parente668d175dedf05dfcd04cb0cc0a6f0774d92cee6 (diff)
Document 'ctest --output-on-failure' in installation tests section
-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
================