diff options
author | dgp <dgp@users.sourceforge.net> | 2003-05-05 16:59:49 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-05-05 16:59:49 (GMT) |
commit | 9b7a77273061e8b586583edc86259f9f14fdab2c (patch) | |
tree | fd04ccc16c71a93ad3790d367bbf15860bd58a10 /library/tcltest | |
parent | f1905eb4deb122f505e14eb9a1f8e0ddda7e4960 (diff) | |
download | tcl-9b7a77273061e8b586583edc86259f9f14fdab2c.zip tcl-9b7a77273061e8b586583edc86259f9f14fdab2c.tar.gz tcl-9b7a77273061e8b586583edc86259f9f14fdab2c.tar.bz2 |
* library/tcltest/tcltest.tcl: The -returnCodes option to [test]
failed to recognize the symbolic name "ok" for return code 0.
Diffstat (limited to 'library/tcltest')
-rw-r--r-- | library/tcltest/tcltest.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 43ca8e7..7c237e6 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.78.2.2 2003/04/21 20:41:55 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.78.2.3 2003/05/05 16:59:50 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { @@ -1919,7 +1919,7 @@ proc tcltest::test {name description args} { } # Replace symbolic valies supplied for -returnCodes - foreach {strcode numcode} {normal 0 error 1 return 2 break 3 continue 4} { + foreach {strcode numcode} {ok 0 normal 0 error 1 return 2 break 3 continue 4} { set returnCodes [string map -nocase [list $strcode $numcode] $returnCodes] } } else { |