diff options
Diffstat (limited to 'tests/clock.test')
-rw-r--r-- | tests/clock.test | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/tests/clock.test b/tests/clock.test index dae01a2..f0752bc 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.46 2004/10/04 15:30:25 kennykb Exp $ +# RCS: @(#) $Id: clock.test,v 1.47 2004/10/22 14:27:39 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -35301,6 +35301,28 @@ test clock-43.1 {regression test - mktime returning -1} \ } \ -result {-1} +test clock-44.1 {regression test - time zone name containing hyphen } \ + -setup { + if { [info exists env(TZ)] } { + set oldTZ $env(TZ) + } + set env(TZ) US/East-Indiana + } \ + -body { + clock format 1098466496 -format %H:%M:%S%z -timezone US/East-Indiana + } \ + -cleanup { + if { [info exists oldTZ] } { + set env(TZ) $oldTZ + unset oldTZ + } else { + unset env(TZ) + } + } \ + -result {12:34:56-0500} + + + # cleanup namespace delete ::testClock |