From 1bdda01b581e59aad9fa1e07b95e4488837a6664 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Tue, 5 Jul 2016 16:32:15 +0200 Subject: [PATCH] update documentation to show how to submit tests results for an already installed library --- doc/developers/testsuite.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/developers/testsuite.html b/doc/developers/testsuite.html index 833c70b185..7865b44404 100644 --- a/doc/developers/testsuite.html +++ b/doc/developers/testsuite.html @@ -727,6 +727,18 @@ $ ctest [...] -V -S ../tests/run_testsuite.cmake specify the same options for ctest as explained above.

+

+ It is possible to run tests and submit results for an already installed library by +

+mkdir build && cd build
+cp $DEAL_II_SOURCE_DIR/CTestConfig.cmake .
+ctest \
+  -DCTEST_SOURCE_DIRECTORY=$DEAL_II_SOURCE_DIR/tests \
+  -DDEAL_II_DIR=$DEAL_II_DIR \
+  [...] -S $DEAL_II_SOURCE_DIR/tests/run_testsuite.cmake -V
+
+

+

Note: The default output in script mode is very minimal. Therefore, it is recommended to specify -V which will -- 2.39.5