diff options
author | dgp <dgp@users.sourceforge.net> | 2004-05-26 15:18:23 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-05-26 15:18:23 (GMT) |
commit | 31e6ca71ca837cbe94666cbb737e6c11198f516f (patch) | |
tree | 1e59eb0ce25da8ee1d6e8fed4a3885c07df9b097 /library/tcltest/tcltest.tcl | |
parent | 6418e217136079ba56cb50fea7ad22f0cc6b6dc0 (diff) | |
download | tcl-31e6ca71ca837cbe94666cbb737e6c11198f516f.zip tcl-31e6ca71ca837cbe94666cbb737e6c11198f516f.tar.gz tcl-31e6ca71ca837cbe94666cbb737e6c11198f516f.tar.bz2 |
* library/tcltest/tcltest.tcl: Correction to debug prints and testing
* library/tcltest/pkgIndex.tcl: if TCLTEST_OPTIONS value. Updated
* tests/tcltest.test: tcltest-19.1 to tcltest 2.1 behavior.
Bumped to tcltest 2.2.6.
Diffstat (limited to 'library/tcltest/tcltest.tcl')
-rw-r--r-- | library/tcltest/tcltest.tcl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index d037fd3..afa2e46 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.89 2004/03/17 19:29:42 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.90 2004/05/26 15:18:24 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { @@ -24,7 +24,7 @@ namespace eval tcltest { # When the version number changes, be sure to update the pkgIndex.tcl file, # and the install directory in the Makefiles. When the minor version # changes (new feature) be sure to update the man page as well. - variable Version 2.2.5 + variable Version 2.2.6 # Compatibility support for dumb variables defined in tcltest 1 # Do not use these. Call [package provide Tcl] and [info patchlevel] @@ -1499,8 +1499,8 @@ proc tcltest::ProcessCmdLineArgs {} { DebugPuts 2 \ " ::env(TCLTEST_OPTIONS): $::env(TCLTEST_OPTIONS)" } - if {[info exists argv]} { - DebugPuts 2 " argv: $argv" + if {[info exists ::argv]} { + DebugPuts 2 " argv: $::argv" } DebugPuts 2 "tcltest::debug = [debug]" DebugPuts 2 "tcltest::testsDirectory = [testsDirectory]" @@ -3287,7 +3287,7 @@ namespace eval tcltest { Tcl list: $msg" return } - if {[llength $::env(TCLTEST_OPTIONS)] < 2} { + if {[llength $::env(TCLTEST_OPTIONS)] % 2} { Warn "invalid TCLTEST_OPTIONS: \"$options\":\n should be\ -option value ?-option value ...?" return |