From: Wolfgang Bangerth Date: Fri, 8 May 2020 03:44:57 +0000 (-0600) Subject: Minor update to the section on uploading test results. X-Git-Tag: v9.2.0-rc1~86^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8753d58f2ba7d65ef400e2a3068e0d84eef112bc;p=dealii.git Minor update to the section on uploading test results. --- 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.