summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2007-01-18 10:12:25 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2007-01-18 10:12:25 +0000
commite7430df8803343554e8484c02d992e3b42b766d5 (patch)
treee0420459117e5991ac45da3b54fe40ff6e6e7a48 /doc
parent2cdc4de7af6b210a0ee3ca3503a9f069742d5f30 (diff)
Implement and document the new possibility to specify the number of processors
required to run a testsuite in a thorn's test.ccl configuration file. This closes PR 2078/Cactus: "specify the number of processors required to run a testsuite". git-svn-id: http://svn.cactuscode.org/flesh/trunk@4401 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc')
-rw-r--r--doc/UsersGuide/ThornWriters.tex14
1 files changed, 10 insertions, 4 deletions
diff --git a/doc/UsersGuide/ThornWriters.tex b/doc/UsersGuide/ThornWriters.tex
index 13a44076..2f0d0bec 100644
--- a/doc/UsersGuide/ThornWriters.tex
+++ b/doc/UsersGuide/ThornWriters.tex
@@ -3527,18 +3527,20 @@ rest of the line is a comment. If the last non-blank character of a
line in a config file is a backslash `\texttt{$\backslash$}', the
following line is treated as a continuation of the current line.
Options include test specific absolute and relative tolerances, thorn
-specific absolute and relative tolerances and file extensions. The
-configuration file has the form:
+specific absolute and relative tolerances, the number of procesors required
+to run, and file extensions. The configuration file has the form:
\begin{alltt}
ABSTOL <\var{thorn_absolute_tolerance}>
RELTOL <\var{thorn_relative_tolerance}>
+NPROCS <\var{thorn_nprocs}>
EXTENSIONS <\var{extension_1} \var{extension_2} \var{extension_3}>
TEST <\var{test_example}>
\{
ABSTOL <\var{absolute_tol}>
RELTOL <\var{relative_tol}>
+ NPROCS <\var{nprocs}>
\}
\end{alltt}
@@ -3546,8 +3548,12 @@ which states that when comparing files of test \verb|test_example|,
\verb|absolute_tol| and \verb|relative_tol| {\space} should be used as
the absolute and relative tolerances. For all other tests in the
thorn, the default value of absolute and relative tolerances are set
-to \verb|thorn_absolute_tolerance| and
-\verb|thorn_relative_tolerance|. The \texttt{EXTENSIONS} option adds
+to \verb|thorn_absolute_tolerance| and \verb|thorn_relative_tolerance|.
+The \texttt{NPROCS} option specifies the number of processors required to
+run a given testsuite \var{test\_example} or all testsuites of a thorn
+successfully. If no \texttt{NPROCS} option is present, the testsuite(s)
+are assumed to run with any number of processors.
+The \texttt{EXTENSIONS} option adds
\verb|extension_1|, \verb|extension_2| and \verb|extension_3| to the
list of file extensions that are compared. This list is global over
all tests in a configuration.