diff options
author | Kevin B Kenny <kennykb@acm.org> | 2008-06-17 02:22:26 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2008-06-17 02:22:26 (GMT) |
commit | 5f6aa5eb4d8d30dde07c05db427c8934b2c31dff (patch) | |
tree | 61a51da6134055feea25c7aa4d603550108db17a /tests/clock.test | |
parent | 32d107e23b1d9d75d74c00fdd52dde8992156169 (diff) | |
download | tcl-5f6aa5eb4d8d30dde07c05db427c8934b2c31dff.zip tcl-5f6aa5eb4d8d30dde07c05db427c8934b2c31dff.tar.gz tcl-5f6aa5eb4d8d30dde07c05db427c8934b2c31dff.tar.bz2 |
2006-06-17 Kevin Kenny <kennykb@acm.org>
* generic/tclClock.c (ConvertLocalToUTC):
* tests/clock.test (clock-63.1): Fixed a bug where the
internal ConvertLocalToUTC command segfaulted if passed a
dictionary without the 'localSeconds' key. To the best of
my knowledge, the bug was not observable in the [clock]
command itself.
Diffstat (limited to 'tests/clock.test')
-rw-r--r-- | tests/clock.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/clock.test b/tests/clock.test index e3b3f85..cb7c4a1 100644 --- a/tests/clock.test +++ b/tests/clock.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: clock.test,v 1.83.2.1 2008/04/14 18:04:40 kennykb Exp $ +# RCS: @(#) $Id: clock.test,v 1.83.2.2 2008/06/17 02:22:26 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -36636,6 +36636,14 @@ test clock-62.1 {Bug 1902423} {*}{ -result ok } +test clock-63.1 {Incorrect use of internal ConvertLocalToUTC command} {*}{ + -body { + ::tcl::clock::ConvertLocalToUTC {immaterial stuff} {} 12345 + } + -returnCodes error + -result {key "localseconds" not found in dictionary} +} + # cleanup namespace delete ::testClock |