diff options
author | gahr <gahr@gahr.ch> | 2016-04-20 19:27:31 (GMT) |
---|---|---|
committer | gahr <gahr@gahr.ch> | 2016-04-20 19:27:31 (GMT) |
commit | 9a625d23f10c30494d1e132eb1bb57bf7486d26b (patch) | |
tree | 94eb211fdf0c09277b9e8bf4ed9d97f87622e4ea /doc | |
parent | 5f08f4b52618056de417f6d543d5bd596d9197eb (diff) | |
download | tcl-9a625d23f10c30494d1e132eb1bb57bf7486d26b.zip tcl-9a625d23f10c30494d1e132eb1bb57bf7486d26b.tar.gz tcl-9a625d23f10c30494d1e132eb1bb57bf7486d26b.tar.bz2 |
Implement msec and usec verbosity levels in tcltest::configure
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tcltest.n | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/tcltest.n b/doc/tcltest.n index cedc763..ac8b73b 100644 --- a/doc/tcltest.n +++ b/doc/tcltest.n @@ -872,8 +872,8 @@ harness are doing. . Sets the type of output verbosity desired to \fIlevel\fR, a list of zero or more of the elements \fBbody\fR, \fBpass\fR, -\fBskip\fR, \fBstart\fR, \fBerror\fR and \fBline\fR. Default value -is +\fBskip\fR, \fBstart\fR, \fBerror\fR, \fBline\fR, \fBmsec\fR and \fBusec\fR. +Default value is .QW "\fBbody error\fR" . Levels are defined as: .RS @@ -890,6 +890,10 @@ Print errorInfo and errorCode, if they exist, when a test return code does not match its expected return code .IP "line (\fBl\fR)" Print source file line information of failed tests +.IP "msec (\fBm\fR)" +Print each test's execution time in milliseconds +.IP "usec (\fBu\fR)" +Print each test's execution time in microseconds .PP The single letter abbreviations noted above are also recognized so that |