From 356c4629917cb4a00dffe1dc1951b0ec0ede409b Mon Sep 17 00:00:00 2001 From: dkf Date: Thu, 15 Mar 2001 14:36:31 +0000 Subject: Error behaviour of [unset] was changed to agree with documentation, so must change associated test as well. FossilOrigin-Name: ae833bf3821708b056b2cfddf8e34807ee2e5c84 --- ChangeLog | 5 +++++ tests/set-old.test | 18 ++++-------------- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 04ffa20..fca5e37 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-03-15 Donal K. Fellows + + * tests/set-old.test (set-old-7.2): Changed error behaviour of + [unset] to agree with documentation, so must change test as well. + 2001-03-14 Don Porter * library/package.tcl (pkg_mkIndex): Added patch from Vince Darley to make [pkg_mkIndex -verbose] even more verbose. diff --git a/tests/set-old.test b/tests/set-old.test index 1cf6aba..ffb6501 100644 --- a/tests/set-old.test +++ b/tests/set-old.test @@ -13,7 +13,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: set-old.test,v 1.13 2001/03/06 14:45:03 dkf Exp $ +# RCS: @(#) $Id: set-old.test,v 1.14 2001/03/15 14:36:32 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -204,7 +204,9 @@ test set-old-7.1 {unset command} { } {0 0 0 1} test set-old-7.2 {unset command} { list [catch {unset} msg] $msg -} {1 {wrong # args: should be "unset ?-nocomplain? ?--? ?varName varName ...?"}} +} {0 {}} +# Used to return: +#{1 {wrong # args: should be "unset ?-nocomplain? ?--? ?varName varName ...?"}} test set-old-7.3 {unset command} { catch {unset a} list [catch {unset a} msg] $msg @@ -915,15 +917,3 @@ catch {unset aVaRnAmE} # cleanup ::tcltest::cleanupTests return - - - - - - - - - - - - -- cgit v0.12