diff options
author | dgp <dgp@users.sourceforge.net> | 2004-05-26 16:25:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-05-26 16:25:00 (GMT) |
commit | 6cc01e6368eeff74fcaff85e89e3910e120e7afc (patch) | |
tree | d70ec4ea7b983cb8aea46c3399373921b092db75 /library/tcltest | |
parent | 31e6ca71ca837cbe94666cbb737e6c11198f516f (diff) | |
download | tcl-6cc01e6368eeff74fcaff85e89e3910e120e7afc.zip tcl-6cc01e6368eeff74fcaff85e89e3910e120e7afc.tar.gz tcl-6cc01e6368eeff74fcaff85e89e3910e120e7afc.tar.bz2 |
* library/tcltest/tcltest.tcl: Correction to debug prints and testing
* library/tcltest/pkgIndex.tcl: if TCLTEST_OPTIONS value. Corrected
* tests/tcltest.test: double increment of numTestFiles in
-singleproc 1 configurations. Updated tcltest-19.1 to tcltest 2.1
behavior. Corrected tcltest-25.3 to not falsely report a failure
in tcltest.test. Bumped to tcltest 2.2.6. [Bugs 960560, 960926]
Diffstat (limited to 'library/tcltest')
-rw-r--r-- | library/tcltest/tcltest.tcl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index afa2e46..692f0f1 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.90 2004/05/26 15:18:24 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.91 2004/05/26 16:25:00 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { @@ -2418,7 +2418,6 @@ proc tcltest::cleanupTests {{calledFromAllFile 0}} { # then add current file to failFile list if any tests in this # file failed - incr numTestFiles if {$currentFailure \ && ([lsearch -exact $failFiles $testFileName] == -1)} { lappend failFiles $testFileName |