summaryrefslogtreecommitdiff
path: root/src/python/doc/installation.rst
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 /src/python/doc/installation.rst
parente668d175dedf05dfcd04cb0cc0a6f0774d92cee6 (diff)
Document 'ctest --output-on-failure' in installation tests section
Diffstat (limited to 'src/python/doc/installation.rst')
-rw-r--r--src/python/doc/installation.rst12
1 files changed, 12 insertions, 0 deletions
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
================