diff options
author | dgp <dgp@users.sourceforge.net> | 2002-06-26 03:25:06 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-06-26 03:25:06 (GMT) |
commit | 6d8d92b08fa8a8371a2e465a95efc8fc60f86c27 (patch) | |
tree | 56704b807dc239981a2a9ffdeb244cbf4959f4a9 /library/tcltest | |
parent | 9157391b9a08764c742e99a52cbe1326018c12f2 (diff) | |
download | tcl-6d8d92b08fa8a8371a2e465a95efc8fc60f86c27.zip tcl-6d8d92b08fa8a8371a2e465a95efc8fc60f86c27.tar.gz tcl-6d8d92b08fa8a8371a2e465a95efc8fc60f86c27.tar.bz2 |
* Corrected suppression of -verbose skip and start by [test -output].
Also corrected test suite errors exposed by corrected code.
[Bug 564656]
Diffstat (limited to 'library/tcltest')
-rw-r--r-- | library/tcltest/tcltest.tcl | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 9b93ddb..18ebf71 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -16,7 +16,7 @@ # Contributions from Don Porter, NIST, 2002. (not subject to US copyright) # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.57 2002/06/26 01:11:09 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.58 2002/06/26 03:25:06 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { @@ -1477,12 +1477,12 @@ proc tcltest::Replace::puts {args} { if {[string equal $channel [[namespace parent]::outputChannel]] || [string equal $channel stdout]} { append outData [lindex $args end]\n + return } elseif {[string equal $channel [[namespace parent]::errorChannel]] || [string equal $channel stderr]} { append errData [lindex $args end]\n + return } - return - # return [Puts [lindex $args 0] [lindex $args end]] } # If we haven't returned by now, we don't know how to handle the @@ -2175,7 +2175,13 @@ proc tcltest::RunTest { if {$doTest == 0} { if {[IsVerbose skip]} { - puts [outputChannel] "++++ $name SKIPPED: $constraints" + if {[string equal [namespace current]::Replace::puts \ + [namespace origin puts]]} { + Replace::Puts [outputChannel] \ + "++++ $name SKIPPED: $constraints" + } else { + puts [outputChannel] "++++ $name SKIPPED: $constraints" + } } if {$testLevel == 1} { @@ -2208,7 +2214,12 @@ proc tcltest::RunTest { } if {[IsVerbose start]} { - puts [outputChannel] "---- $name start" + if {[string equal [namespace current]::Replace::puts \ + [namespace origin puts]]} { + Replace::Puts [outputChannel] "---- $name start" + } else { + puts [outputChannel] "---- $name start" + } flush [outputChannel] } |