Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RunTest
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ checkresult()
checkspecial()
{
expect=${2:-0}
$sim $valgrind $vjs $pcre2test $1 >>testSoutput
$sim $valgrind $vjs $pcre2test $1 >>testSoutput 2>&1
if [ $? -ne "$expect" ] ; then
echo "** pcre2test $1 failed - check testSoutput"
yield=1
Expand Down
6 changes: 6 additions & 0 deletions doc/html/pcre2test.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@ <h2><a name="SEC4" href="#TOC1">COMMAND LINE OPTIONS</a></h2>
If an unknown option is given, an error message is output; the exit code is 0.
</p>
<p>
<b>--colo[u]r[=&#60;always,auto,never&#62;]</b>
By default, the output is coloured if the output file is a terminal (<b>auto</b>).
Force or suppress output of ANSI colour escapes with <b>always</b> and <b>never</b>
respectively.
</p>
<p>
<b>-d</b>
Behave as if each pattern has the <b>debug</b> modifier; the internal
form and information about the compiled pattern is output after compilation;
Expand Down
5 changes: 5 additions & 0 deletions doc/pcre2test.1
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,11 @@ information. It returns one of the following values:
.sp
If an unknown option is given, an error message is output; the exit code is 0.
.TP 10
\fB--colo[u]r[=<always,auto,never>]\fP
By default, the output is coloured if the output file is a terminal (\fBauto\fP).
Force or suppress output of ANSI colour escapes with \fBalways\fP and \fBnever\fP
respectively.
.TP 10
\fB-d\fP
Behave as if each pattern has the \fBdebug\fP modifier; the internal
form and information about the compiled pattern is output after compilation;
Expand Down
Loading