From 8753d58f2ba7d65ef400e2a3068e0d84eef112bc Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 7 May 2020 21:44:57 -0600 Subject: [PATCH] Minor update to the section on uploading test results. --- doc/developers/testsuite.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/developers/testsuite.html b/doc/developers/testsuite.html index 6785714290..bc6f6c2dd8 100644 --- a/doc/developers/testsuite.html +++ b/doc/developers/testsuite.html @@ -735,6 +735,9 @@ DEAL_II_PICKUP_TESTS() href="https://cdash.43-1.org/index.php?project=deal.II">CDash instance just invoke ctest within a build directory (or designated build directory) with the -S option pointing to the + run_testsuite.cmake script (assuming here for the + moment that your build directory is a sub-directory of the + source directory):
 $ ctest [...] -V -S ../tests/run_testsuite.cmake
 
@@ -751,7 +754,13 @@ $ ctest [...] -V -S ../tests/run_testsuite.cmake
 $ ctest -DMAKEOPTS="-j N" -j N [...] -V -S ../tests/run_testsuite.cmake
 
- for compiling the library and running the tests in parallel. + for compiling the library and running the tests in parallel, + where N is the number of jobs you want to + simultaneously execute on your machine; you would typically + choose N equal to the number of processor cores you + have in your machine, or maybe somewhere around one half to + three quarters if you don't want to overload it or are short on + memory.

-- 2.39.5