diff options
Diffstat (limited to 'tests/clock.test')
-rw-r--r-- | tests/clock.test | 7465 |
1 files changed, 4468 insertions, 2997 deletions
diff --git a/tests/clock.test b/tests/clock.test index b8c864d..8debba1 100644 --- a/tests/clock.test +++ b/tests/clock.test @@ -10,38 +10,28 @@ # # 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.56 2005/07/15 22:32:24 kennykb Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 namespace import -force ::tcltest::* } -if { $::tcl_platform(platform) eq {windows} } { - if { [catch { package require registry 1.1 }] } { - - # HIDEOUS KLUDGE: [package require registry 1.1] has failed. - # This failure likely means that we're running in Tcl's build - # directory instead of the install directory. We recover by - # trying to load tclreg*.dll directly. - - if { [catch { - load [lindex \ - [glob -directory \ - [file join \ - [pwd] \ - [file dirname [info nameofexecutable]]] \ - tclReg*.dll] \ - 0] registry - }] } { - # Still no registry! - namespace eval ::tcl::clock [set NoRegistry {}] - } +if {[testConstraint win]} { + if {[catch { + ::tcltest::loadTestedCommands + package require registry + }]} { + namespace eval ::tcl::clock {variable NoRegistry {}} } } + package require msgcat 1.4 +testConstraint detroit \ + [expr {![catch {clock format 0 -timezone :America/Detroit -format %z}]}] +testConstraint y2038 \ + [expr {[clock format 2158894800 -format %z -timezone :America/Detroit] eq {-0400}}] + # TEST PLAN # clock-1: @@ -216,6 +206,8 @@ namespace eval ::tcl::clock { LOCALE_DATE_FORMAT {die %Od mensis %Om annoque %EY} LOCALE_TIME_FORMAT {%OH h %OM m %OS s} LOCALE_DATE_TIME_FORMAT {%Ex %EX} + BCE {Before Christ} + CE {Anno Domini} } } @@ -233,6 +225,7 @@ namespace eval ::testClock { [dict create \ HKEY_CURRENT_USER\\Control\ Panel\\International \ [dict create \ + locale 0409 \ sShortDate dd-MMM-yyyy \ sLongDate "'the' dd''' day of' MMMM yyyy" \ sTimeFormat "h:mm:ss tt"] \ @@ -241,8 +234,8 @@ namespace eval ::testClock { Bias 300 \ StandardBias 0 \ DaylightBias -60 \ - StandardStart \x00\x00\x0a\x00\x05\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00 \ - DaylightStart \x00\x00\x04\x00\x01\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00]] + StandardStart \x00\x00\x0b\x00\x01\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00 \ + DaylightStart \x00\x00\x03\x00\x02\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00]] } @@ -261,7 +254,7 @@ proc ::testClock::registry { cmd path key } { test clock-1.0 "clock format - wrong # args" { list [catch {clock format} msg] $msg $::errorCode -} {1 {wrong # args: should be "::tcl::clock::format clockval ?-format string? ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?"} {CLOCK wrongNumArgs}} +} {1 {wrong # args: should be "clock format clockval ?-format string? ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?"} {CLOCK wrongNumArgs}} test clock-1.1 "clock format - bad time" { list [catch {clock format foo} msg] $msg @@ -275,9 +268,13 @@ test clock-1.3 "clock format - empty val" { clock format 0 -gmt 1 -format "" } {} -test clock-1.4 "clock format - bad flag" { +test clock-1.4 "clock format - bad flag" {*}{ + -body { list [catch {clock format 0 -oops badflag} msg] $msg $::errorCode -} {1 {bad switch "-oops", must be -format, -gmt, -locale or -timezone} {CLOCK badSwitch -oops}} + } + -match glob + -result {1 {bad switch "-oops": must be -format, -gmt, -locale, or -timezone} {CLOCK badSwitch -oops}} +} test clock-1.5 "clock format - bad timezone" { list [catch {clock format 0 -format "%s" -timezone :NOWHERE} msg] $msg $::errorCode @@ -287,6 +284,10 @@ test clock-1.6 "clock format - gmt + timezone" { list [catch {clock format 0 -timezone :GMT -gmt true} msg] $msg $::errorCode } {1 {cannot use -gmt and -timezone in same call} {CLOCK gmtWithTimezone}} +test clock-1.7 "clock format - option abbreviations" { + clock format 0 -g true -f "%Y-%m-%d" +} 1970-01-01 + # BEGIN testcases2 # Test formatting of Gregorian year, month, day, all formats @@ -12416,1775 +12417,2297 @@ test clock-2.2424 {conversion of 2065-12-31} { # BEGIN testcases3 test clock-3.1 {ISO week-based calendar 1871-W52-1} { - clock format -3093206400 -format {%a %A %g %G %u %V %w} -gmt true; # 1871-W52-1 -} {Mon Monday 71 1871 1 52 1} -test clock-3.2 {ISO week-based calendar 1871-W52-7} { - clock format -3092688000 -format {%a %A %g %G %u %V %w} -gmt true; # 1871-W52-7 -} {Sun Sunday 71 1871 7 52 0} -test clock-3.3 {ISO week-based calendar 1872-W01-1} { - clock format -3092601600 -format {%a %A %g %G %u %V %w} -gmt true; # 1872-W01-1 -} {Mon Monday 72 1872 1 01 1} -test clock-3.4 {ISO week-based calendar 1872-W01-7} { - clock format -3092083200 -format {%a %A %g %G %u %V %w} -gmt true; # 1872-W01-7 -} {Sun Sunday 72 1872 7 01 0} -test clock-3.5 {ISO week-based calendar 1872-W02-1} { - clock format -3091996800 -format {%a %A %g %G %u %V %w} -gmt true; # 1872-W02-1 -} {Mon Monday 72 1872 1 02 1} -test clock-3.6 {ISO week-based calendar 1872-W52-1} { - clock format -3061756800 -format {%a %A %g %G %u %V %w} -gmt true; # 1872-W52-1 -} {Mon Monday 72 1872 1 52 1} -test clock-3.7 {ISO week-based calendar 1872-W52-7} { - clock format -3061238400 -format {%a %A %g %G %u %V %w} -gmt true; # 1872-W52-7 -} {Sun Sunday 72 1872 7 52 0} -test clock-3.8 {ISO week-based calendar 1873-W01-1} { - clock format -3061152000 -format {%a %A %g %G %u %V %w} -gmt true; # 1873-W01-1 -} {Mon Monday 73 1873 1 01 1} -test clock-3.9 {ISO week-based calendar 1873-W01-3} { - clock format -3060979200 -format {%a %A %g %G %u %V %w} -gmt true; # 1873-W01-3 -} {Wed Wednesday 73 1873 3 01 3} -test clock-3.10 {ISO week-based calendar 1873-W01-7} { - clock format -3060633600 -format {%a %A %g %G %u %V %w} -gmt true; # 1873-W01-7 -} {Sun Sunday 73 1873 7 01 0} -test clock-3.11 {ISO week-based calendar 1873-W02-1} { - clock format -3060547200 -format {%a %A %g %G %u %V %w} -gmt true; # 1873-W02-1 -} {Mon Monday 73 1873 1 02 1} -test clock-3.12 {ISO week-based calendar 1875-W52-1} { - clock format -2966803200 -format {%a %A %g %G %u %V %w} -gmt true; # 1875-W52-1 -} {Mon Monday 75 1875 1 52 1} -test clock-3.13 {ISO week-based calendar 1875-W52-6} { - clock format -2966371200 -format {%a %A %g %G %u %V %w} -gmt true; # 1875-W52-6 -} {Sat Saturday 75 1875 6 52 6} -test clock-3.14 {ISO week-based calendar 1875-W52-7} { - clock format -2966284800 -format {%a %A %g %G %u %V %w} -gmt true; # 1875-W52-7 -} {Sun Sunday 75 1875 7 52 0} -test clock-3.15 {ISO week-based calendar 1876-W01-1} { - clock format -2966198400 -format {%a %A %g %G %u %V %w} -gmt true; # 1876-W01-1 -} {Mon Monday 76 1876 1 01 1} -test clock-3.16 {ISO week-based calendar 1876-W01-7} { - clock format -2965680000 -format {%a %A %g %G %u %V %w} -gmt true; # 1876-W01-7 -} {Sun Sunday 76 1876 7 01 0} -test clock-3.17 {ISO week-based calendar 1876-W02-1} { - clock format -2965593600 -format {%a %A %g %G %u %V %w} -gmt true; # 1876-W02-1 -} {Mon Monday 76 1876 1 02 1} -test clock-3.18 {ISO week-based calendar 1876-W52-1} { - clock format -2935353600 -format {%a %A %g %G %u %V %w} -gmt true; # 1876-W52-1 -} {Mon Monday 76 1876 1 52 1} -test clock-3.19 {ISO week-based calendar 1876-W52-7} { - clock format -2934835200 -format {%a %A %g %G %u %V %w} -gmt true; # 1876-W52-7 -} {Sun Sunday 76 1876 7 52 0} -test clock-3.20 {ISO week-based calendar 1877-W01-1} { - clock format -2934748800 -format {%a %A %g %G %u %V %w} -gmt true; # 1877-W01-1 -} {Mon Monday 77 1877 1 01 1} -test clock-3.21 {ISO week-based calendar 1877-W01-7} { - clock format -2934230400 -format {%a %A %g %G %u %V %w} -gmt true; # 1877-W01-7 -} {Sun Sunday 77 1877 7 01 0} -test clock-3.22 {ISO week-based calendar 1877-W02-1} { - clock format -2934144000 -format {%a %A %g %G %u %V %w} -gmt true; # 1877-W02-1 -} {Mon Monday 77 1877 1 02 1} -test clock-3.23 {ISO week-based calendar 1879-W52-1} { - clock format -2841004800 -format {%a %A %g %G %u %V %w} -gmt true; # 1879-W52-1 -} {Mon Monday 79 1879 1 52 1} -test clock-3.24 {ISO week-based calendar 1879-W52-7} { - clock format -2840486400 -format {%a %A %g %G %u %V %w} -gmt true; # 1879-W52-7 -} {Sun Sunday 79 1879 7 52 0} -test clock-3.25 {ISO week-based calendar 1880-W01-1} { - clock format -2840400000 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W01-1 -} {Mon Monday 80 1880 1 01 1} -test clock-3.26 {ISO week-based calendar 1880-W01-4} { - clock format -2840140800 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W01-4 -} {Thu Thursday 80 1880 4 01 4} -test clock-3.27 {ISO week-based calendar 1880-W01-7} { - clock format -2839881600 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W01-7 -} {Sun Sunday 80 1880 7 01 0} -test clock-3.28 {ISO week-based calendar 1880-W02-1} { - clock format -2839795200 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W02-1 -} {Mon Monday 80 1880 1 02 1} -test clock-3.29 {ISO week-based calendar 1880-W53-1} { - clock format -2808950400 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W53-1 -} {Mon Monday 80 1880 1 53 1} -test clock-3.30 {ISO week-based calendar 1880-W53-6} { - clock format -2808518400 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W53-6 -} {Sat Saturday 80 1880 6 53 6} -test clock-3.31 {ISO week-based calendar 1880-W53-7} { - clock format -2808432000 -format {%a %A %g %G %u %V %w} -gmt true; # 1880-W53-7 -} {Sun Sunday 80 1880 7 53 0} -test clock-3.32 {ISO week-based calendar 1881-W01-1} { - clock format -2808345600 -format {%a %A %g %G %u %V %w} -gmt true; # 1881-W01-1 -} {Mon Monday 81 1881 1 01 1} -test clock-3.33 {ISO week-based calendar 1881-W01-7} { - clock format -2807827200 -format {%a %A %g %G %u %V %w} -gmt true; # 1881-W01-7 -} {Sun Sunday 81 1881 7 01 0} -test clock-3.34 {ISO week-based calendar 1881-W02-1} { - clock format -2807740800 -format {%a %A %g %G %u %V %w} -gmt true; # 1881-W02-1 -} {Mon Monday 81 1881 1 02 1} -test clock-3.35 {ISO week-based calendar 1883-W52-1} { - clock format -2714601600 -format {%a %A %g %G %u %V %w} -gmt true; # 1883-W52-1 -} {Mon Monday 83 1883 1 52 1} -test clock-3.36 {ISO week-based calendar 1883-W52-7} { - clock format -2714083200 -format {%a %A %g %G %u %V %w} -gmt true; # 1883-W52-7 -} {Sun Sunday 83 1883 7 52 0} -test clock-3.37 {ISO week-based calendar 1884-W01-1} { - clock format -2713996800 -format {%a %A %g %G %u %V %w} -gmt true; # 1884-W01-1 -} {Mon Monday 84 1884 1 01 1} -test clock-3.38 {ISO week-based calendar 1884-W01-2} { - clock format -2713910400 -format {%a %A %g %G %u %V %w} -gmt true; # 1884-W01-2 -} {Tue Tuesday 84 1884 2 01 2} -test clock-3.39 {ISO week-based calendar 1884-W01-7} { - clock format -2713478400 -format {%a %A %g %G %u %V %w} -gmt true; # 1884-W01-7 -} {Sun Sunday 84 1884 7 01 0} -test clock-3.40 {ISO week-based calendar 1884-W02-1} { - clock format -2713392000 -format {%a %A %g %G %u %V %w} -gmt true; # 1884-W02-1 -} {Mon Monday 84 1884 1 02 1} -test clock-3.41 {ISO week-based calendar 1884-W52-1} { - clock format -2683152000 -format {%a %A %g %G %u %V %w} -gmt true; # 1884-W52-1 -} {Mon Monday 84 1884 1 52 1} -test clock-3.42 {ISO week-based calendar 1884-W52-7} { - clock format -2682633600 -format {%a %A %g %G %u %V %w} -gmt true; # 1884-W52-7 -} {Sun Sunday 84 1884 7 52 0} -test clock-3.43 {ISO week-based calendar 1885-W01-1} { - clock format -2682547200 -format {%a %A %g %G %u %V %w} -gmt true; # 1885-W01-1 -} {Mon Monday 85 1885 1 01 1} -test clock-3.44 {ISO week-based calendar 1885-W01-4} { - clock format -2682288000 -format {%a %A %g %G %u %V %w} -gmt true; # 1885-W01-4 -} {Thu Thursday 85 1885 4 01 4} -test clock-3.45 {ISO week-based calendar 1885-W01-7} { - clock format -2682028800 -format {%a %A %g %G %u %V %w} -gmt true; # 1885-W01-7 -} {Sun Sunday 85 1885 7 01 0} -test clock-3.46 {ISO week-based calendar 1885-W02-1} { - clock format -2681942400 -format {%a %A %g %G %u %V %w} -gmt true; # 1885-W02-1 -} {Mon Monday 85 1885 1 02 1} -test clock-3.47 {ISO week-based calendar 1887-W52-1} { - clock format -2588198400 -format {%a %A %g %G %u %V %w} -gmt true; # 1887-W52-1 -} {Mon Monday 87 1887 1 52 1} -test clock-3.48 {ISO week-based calendar 1887-W52-6} { - clock format -2587766400 -format {%a %A %g %G %u %V %w} -gmt true; # 1887-W52-6 -} {Sat Saturday 87 1887 6 52 6} -test clock-3.49 {ISO week-based calendar 1887-W52-7} { - clock format -2587680000 -format {%a %A %g %G %u %V %w} -gmt true; # 1887-W52-7 -} {Sun Sunday 87 1887 7 52 0} -test clock-3.50 {ISO week-based calendar 1888-W01-1} { - clock format -2587593600 -format {%a %A %g %G %u %V %w} -gmt true; # 1888-W01-1 -} {Mon Monday 88 1888 1 01 1} -test clock-3.51 {ISO week-based calendar 1888-W01-7} { - clock format -2587075200 -format {%a %A %g %G %u %V %w} -gmt true; # 1888-W01-7 -} {Sun Sunday 88 1888 7 01 0} -test clock-3.52 {ISO week-based calendar 1888-W02-1} { - clock format -2586988800 -format {%a %A %g %G %u %V %w} -gmt true; # 1888-W02-1 -} {Mon Monday 88 1888 1 02 1} -test clock-3.53 {ISO week-based calendar 1888-W52-1} { - clock format -2556748800 -format {%a %A %g %G %u %V %w} -gmt true; # 1888-W52-1 -} {Mon Monday 88 1888 1 52 1} -test clock-3.54 {ISO week-based calendar 1888-W52-7} { - clock format -2556230400 -format {%a %A %g %G %u %V %w} -gmt true; # 1888-W52-7 -} {Sun Sunday 88 1888 7 52 0} -test clock-3.55 {ISO week-based calendar 1889-W01-1} { - clock format -2556144000 -format {%a %A %g %G %u %V %w} -gmt true; # 1889-W01-1 -} {Mon Monday 89 1889 1 01 1} -test clock-3.56 {ISO week-based calendar 1889-W01-2} { - clock format -2556057600 -format {%a %A %g %G %u %V %w} -gmt true; # 1889-W01-2 -} {Tue Tuesday 89 1889 2 01 2} -test clock-3.57 {ISO week-based calendar 1889-W01-7} { - clock format -2555625600 -format {%a %A %g %G %u %V %w} -gmt true; # 1889-W01-7 -} {Sun Sunday 89 1889 7 01 0} -test clock-3.58 {ISO week-based calendar 1889-W02-1} { - clock format -2555539200 -format {%a %A %g %G %u %V %w} -gmt true; # 1889-W02-1 -} {Mon Monday 89 1889 1 02 1} -test clock-3.59 {ISO week-based calendar 1889-W52-1} { - clock format -2525299200 -format {%a %A %g %G %u %V %w} -gmt true; # 1889-W52-1 -} {Mon Monday 89 1889 1 52 1} -test clock-3.60 {ISO week-based calendar 1889-W52-7} { - clock format -2524780800 -format {%a %A %g %G %u %V %w} -gmt true; # 1889-W52-7 -} {Sun Sunday 89 1889 7 52 0} -test clock-3.61 {ISO week-based calendar 1890-W01-1} { - clock format -2524694400 -format {%a %A %g %G %u %V %w} -gmt true; # 1890-W01-1 -} {Mon Monday 90 1890 1 01 1} -test clock-3.62 {ISO week-based calendar 1890-W01-3} { - clock format -2524521600 -format {%a %A %g %G %u %V %w} -gmt true; # 1890-W01-3 -} {Wed Wednesday 90 1890 3 01 3} -test clock-3.63 {ISO week-based calendar 1890-W01-7} { - clock format -2524176000 -format {%a %A %g %G %u %V %w} -gmt true; # 1890-W01-7 -} {Sun Sunday 90 1890 7 01 0} -test clock-3.64 {ISO week-based calendar 1890-W02-1} { - clock format -2524089600 -format {%a %A %g %G %u %V %w} -gmt true; # 1890-W02-1 -} {Mon Monday 90 1890 1 02 1} -test clock-3.65 {ISO week-based calendar 1890-W52-1} { - clock format -2493849600 -format {%a %A %g %G %u %V %w} -gmt true; # 1890-W52-1 -} {Mon Monday 90 1890 1 52 1} -test clock-3.66 {ISO week-based calendar 1890-W52-7} { - clock format -2493331200 -format {%a %A %g %G %u %V %w} -gmt true; # 1890-W52-7 -} {Sun Sunday 90 1890 7 52 0} -test clock-3.67 {ISO week-based calendar 1891-W01-1} { - clock format -2493244800 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W01-1 -} {Mon Monday 91 1891 1 01 1} -test clock-3.68 {ISO week-based calendar 1891-W01-4} { - clock format -2492985600 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W01-4 -} {Thu Thursday 91 1891 4 01 4} -test clock-3.69 {ISO week-based calendar 1891-W01-7} { - clock format -2492726400 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W01-7 -} {Sun Sunday 91 1891 7 01 0} -test clock-3.70 {ISO week-based calendar 1891-W02-1} { - clock format -2492640000 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W02-1 -} {Mon Monday 91 1891 1 02 1} -test clock-3.71 {ISO week-based calendar 1891-W53-1} { - clock format -2461795200 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W53-1 -} {Mon Monday 91 1891 1 53 1} -test clock-3.72 {ISO week-based calendar 1891-W53-5} { - clock format -2461449600 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W53-5 -} {Fri Friday 91 1891 5 53 5} -test clock-3.73 {ISO week-based calendar 1891-W53-7} { - clock format -2461276800 -format {%a %A %g %G %u %V %w} -gmt true; # 1891-W53-7 -} {Sun Sunday 91 1891 7 53 0} -test clock-3.74 {ISO week-based calendar 1892-W01-1} { - clock format -2461190400 -format {%a %A %g %G %u %V %w} -gmt true; # 1892-W01-1 -} {Mon Monday 92 1892 1 01 1} -test clock-3.75 {ISO week-based calendar 1892-W01-7} { - clock format -2460672000 -format {%a %A %g %G %u %V %w} -gmt true; # 1892-W01-7 -} {Sun Sunday 92 1892 7 01 0} -test clock-3.76 {ISO week-based calendar 1892-W02-1} { - clock format -2460585600 -format {%a %A %g %G %u %V %w} -gmt true; # 1892-W02-1 -} {Mon Monday 92 1892 1 02 1} -test clock-3.77 {ISO week-based calendar 1892-W52-1} { - clock format -2430345600 -format {%a %A %g %G %u %V %w} -gmt true; # 1892-W52-1 -} {Mon Monday 92 1892 1 52 1} -test clock-3.78 {ISO week-based calendar 1892-W52-6} { - clock format -2429913600 -format {%a %A %g %G %u %V %w} -gmt true; # 1892-W52-6 -} {Sat Saturday 92 1892 6 52 6} -test clock-3.79 {ISO week-based calendar 1892-W52-7} { - clock format -2429827200 -format {%a %A %g %G %u %V %w} -gmt true; # 1892-W52-7 -} {Sun Sunday 92 1892 7 52 0} -test clock-3.80 {ISO week-based calendar 1893-W01-1} { - clock format -2429740800 -format {%a %A %g %G %u %V %w} -gmt true; # 1893-W01-1 -} {Mon Monday 93 1893 1 01 1} -test clock-3.81 {ISO week-based calendar 1893-W01-7} { - clock format -2429222400 -format {%a %A %g %G %u %V %w} -gmt true; # 1893-W01-7 -} {Sun Sunday 93 1893 7 01 0} -test clock-3.82 {ISO week-based calendar 1893-W02-1} { - clock format -2429136000 -format {%a %A %g %G %u %V %w} -gmt true; # 1893-W02-1 -} {Mon Monday 93 1893 1 02 1} -test clock-3.83 {ISO week-based calendar 1893-W52-1} { - clock format -2398896000 -format {%a %A %g %G %u %V %w} -gmt true; # 1893-W52-1 -} {Mon Monday 93 1893 1 52 1} -test clock-3.84 {ISO week-based calendar 1893-W52-7} { - clock format -2398377600 -format {%a %A %g %G %u %V %w} -gmt true; # 1893-W52-7 -} {Sun Sunday 93 1893 7 52 0} -test clock-3.85 {ISO week-based calendar 1894-W01-1} { - clock format -2398291200 -format {%a %A %g %G %u %V %w} -gmt true; # 1894-W01-1 -} {Mon Monday 94 1894 1 01 1} -test clock-3.86 {ISO week-based calendar 1894-W01-7} { - clock format -2397772800 -format {%a %A %g %G %u %V %w} -gmt true; # 1894-W01-7 -} {Sun Sunday 94 1894 7 01 0} -test clock-3.87 {ISO week-based calendar 1894-W02-1} { - clock format -2397686400 -format {%a %A %g %G %u %V %w} -gmt true; # 1894-W02-1 -} {Mon Monday 94 1894 1 02 1} -test clock-3.88 {ISO week-based calendar 1894-W52-1} { - clock format -2367446400 -format {%a %A %g %G %u %V %w} -gmt true; # 1894-W52-1 -} {Mon Monday 94 1894 1 52 1} -test clock-3.89 {ISO week-based calendar 1894-W52-7} { - clock format -2366928000 -format {%a %A %g %G %u %V %w} -gmt true; # 1894-W52-7 -} {Sun Sunday 94 1894 7 52 0} -test clock-3.90 {ISO week-based calendar 1895-W01-1} { - clock format -2366841600 -format {%a %A %g %G %u %V %w} -gmt true; # 1895-W01-1 -} {Mon Monday 95 1895 1 01 1} -test clock-3.91 {ISO week-based calendar 1895-W01-2} { - clock format -2366755200 -format {%a %A %g %G %u %V %w} -gmt true; # 1895-W01-2 -} {Tue Tuesday 95 1895 2 01 2} -test clock-3.92 {ISO week-based calendar 1895-W01-7} { - clock format -2366323200 -format {%a %A %g %G %u %V %w} -gmt true; # 1895-W01-7 -} {Sun Sunday 95 1895 7 01 0} -test clock-3.93 {ISO week-based calendar 1895-W02-1} { - clock format -2366236800 -format {%a %A %g %G %u %V %w} -gmt true; # 1895-W02-1 -} {Mon Monday 95 1895 1 02 1} -test clock-3.94 {ISO week-based calendar 1895-W52-1} { - clock format -2335996800 -format {%a %A %g %G %u %V %w} -gmt true; # 1895-W52-1 -} {Mon Monday 95 1895 1 52 1} -test clock-3.95 {ISO week-based calendar 1895-W52-7} { - clock format -2335478400 -format {%a %A %g %G %u %V %w} -gmt true; # 1895-W52-7 -} {Sun Sunday 95 1895 7 52 0} -test clock-3.96 {ISO week-based calendar 1896-W01-1} { - clock format -2335392000 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W01-1 -} {Mon Monday 96 1896 1 01 1} -test clock-3.97 {ISO week-based calendar 1896-W01-3} { - clock format -2335219200 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W01-3 -} {Wed Wednesday 96 1896 3 01 3} -test clock-3.98 {ISO week-based calendar 1896-W01-7} { - clock format -2334873600 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W01-7 -} {Sun Sunday 96 1896 7 01 0} -test clock-3.99 {ISO week-based calendar 1896-W02-1} { - clock format -2334787200 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W02-1 -} {Mon Monday 96 1896 1 02 1} -test clock-3.100 {ISO week-based calendar 1896-W53-1} { - clock format -2303942400 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W53-1 -} {Mon Monday 96 1896 1 53 1} -test clock-3.101 {ISO week-based calendar 1896-W53-5} { - clock format -2303596800 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W53-5 -} {Fri Friday 96 1896 5 53 5} -test clock-3.102 {ISO week-based calendar 1896-W53-7} { - clock format -2303424000 -format {%a %A %g %G %u %V %w} -gmt true; # 1896-W53-7 -} {Sun Sunday 96 1896 7 53 0} -test clock-3.103 {ISO week-based calendar 1897-W01-1} { - clock format -2303337600 -format {%a %A %g %G %u %V %w} -gmt true; # 1897-W01-1 -} {Mon Monday 97 1897 1 01 1} -test clock-3.104 {ISO week-based calendar 1897-W01-7} { - clock format -2302819200 -format {%a %A %g %G %u %V %w} -gmt true; # 1897-W01-7 -} {Sun Sunday 97 1897 7 01 0} -test clock-3.105 {ISO week-based calendar 1897-W02-1} { - clock format -2302732800 -format {%a %A %g %G %u %V %w} -gmt true; # 1897-W02-1 -} {Mon Monday 97 1897 1 02 1} -test clock-3.106 {ISO week-based calendar 1897-W52-1} { - clock format -2272492800 -format {%a %A %g %G %u %V %w} -gmt true; # 1897-W52-1 -} {Mon Monday 97 1897 1 52 1} -test clock-3.107 {ISO week-based calendar 1897-W52-6} { - clock format -2272060800 -format {%a %A %g %G %u %V %w} -gmt true; # 1897-W52-6 -} {Sat Saturday 97 1897 6 52 6} -test clock-3.108 {ISO week-based calendar 1897-W52-7} { - clock format -2271974400 -format {%a %A %g %G %u %V %w} -gmt true; # 1897-W52-7 -} {Sun Sunday 97 1897 7 52 0} -test clock-3.109 {ISO week-based calendar 1898-W01-1} { - clock format -2271888000 -format {%a %A %g %G %u %V %w} -gmt true; # 1898-W01-1 -} {Mon Monday 98 1898 1 01 1} -test clock-3.110 {ISO week-based calendar 1898-W01-7} { - clock format -2271369600 -format {%a %A %g %G %u %V %w} -gmt true; # 1898-W01-7 -} {Sun Sunday 98 1898 7 01 0} -test clock-3.111 {ISO week-based calendar 1898-W02-1} { - clock format -2271283200 -format {%a %A %g %G %u %V %w} -gmt true; # 1898-W02-1 -} {Mon Monday 98 1898 1 02 1} -test clock-3.112 {ISO week-based calendar 1898-W52-1} { - clock format -2241043200 -format {%a %A %g %G %u %V %w} -gmt true; # 1898-W52-1 -} {Mon Monday 98 1898 1 52 1} -test clock-3.113 {ISO week-based calendar 1898-W52-6} { - clock format -2240611200 -format {%a %A %g %G %u %V %w} -gmt true; # 1898-W52-6 -} {Sat Saturday 98 1898 6 52 6} -test clock-3.114 {ISO week-based calendar 1898-W52-7} { - clock format -2240524800 -format {%a %A %g %G %u %V %w} -gmt true; # 1898-W52-7 -} {Sun Sunday 98 1898 7 52 0} -test clock-3.115 {ISO week-based calendar 1899-W01-1} { - clock format -2240438400 -format {%a %A %g %G %u %V %w} -gmt true; # 1899-W01-1 -} {Mon Monday 99 1899 1 01 1} -test clock-3.116 {ISO week-based calendar 1899-W01-7} { - clock format -2239920000 -format {%a %A %g %G %u %V %w} -gmt true; # 1899-W01-7 -} {Sun Sunday 99 1899 7 01 0} -test clock-3.117 {ISO week-based calendar 1899-W02-1} { - clock format -2239833600 -format {%a %A %g %G %u %V %w} -gmt true; # 1899-W02-1 -} {Mon Monday 99 1899 1 02 1} -test clock-3.118 {ISO week-based calendar 1899-W52-1} { - clock format -2209593600 -format {%a %A %g %G %u %V %w} -gmt true; # 1899-W52-1 -} {Mon Monday 99 1899 1 52 1} -test clock-3.119 {ISO week-based calendar 1899-W52-7} { - clock format -2209075200 -format {%a %A %g %G %u %V %w} -gmt true; # 1899-W52-7 -} {Sun Sunday 99 1899 7 52 0} -test clock-3.120 {ISO week-based calendar 1900-W01-1} { - clock format -2208988800 -format {%a %A %g %G %u %V %w} -gmt true; # 1900-W01-1 -} {Mon Monday 00 1900 1 01 1} -test clock-3.121 {ISO week-based calendar 1900-W01-7} { - clock format -2208470400 -format {%a %A %g %G %u %V %w} -gmt true; # 1900-W01-7 -} {Sun Sunday 00 1900 7 01 0} -test clock-3.122 {ISO week-based calendar 1900-W02-1} { - clock format -2208384000 -format {%a %A %g %G %u %V %w} -gmt true; # 1900-W02-1 -} {Mon Monday 00 1900 1 02 1} -test clock-3.123 {ISO week-based calendar 1943-W52-1} { - clock format -820972800 -format {%a %A %g %G %u %V %w} -gmt true; # 1943-W52-1 -} {Mon Monday 43 1943 1 52 1} -test clock-3.124 {ISO week-based calendar 1943-W52-6} { - clock format -820540800 -format {%a %A %g %G %u %V %w} -gmt true; # 1943-W52-6 -} {Sat Saturday 43 1943 6 52 6} -test clock-3.125 {ISO week-based calendar 1943-W52-7} { - clock format -820454400 -format {%a %A %g %G %u %V %w} -gmt true; # 1943-W52-7 -} {Sun Sunday 43 1943 7 52 0} -test clock-3.126 {ISO week-based calendar 1944-W01-1} { - clock format -820368000 -format {%a %A %g %G %u %V %w} -gmt true; # 1944-W01-1 -} {Mon Monday 44 1944 1 01 1} -test clock-3.127 {ISO week-based calendar 1944-W01-7} { - clock format -819849600 -format {%a %A %g %G %u %V %w} -gmt true; # 1944-W01-7 -} {Sun Sunday 44 1944 7 01 0} -test clock-3.128 {ISO week-based calendar 1944-W02-1} { - clock format -819763200 -format {%a %A %g %G %u %V %w} -gmt true; # 1944-W02-1 -} {Mon Monday 44 1944 1 02 1} -test clock-3.129 {ISO week-based calendar 1944-W52-1} { - clock format -789523200 -format {%a %A %g %G %u %V %w} -gmt true; # 1944-W52-1 -} {Mon Monday 44 1944 1 52 1} -test clock-3.130 {ISO week-based calendar 1944-W52-7} { - clock format -789004800 -format {%a %A %g %G %u %V %w} -gmt true; # 1944-W52-7 -} {Sun Sunday 44 1944 7 52 0} -test clock-3.131 {ISO week-based calendar 1945-W01-1} { - clock format -788918400 -format {%a %A %g %G %u %V %w} -gmt true; # 1945-W01-1 -} {Mon Monday 45 1945 1 01 1} -test clock-3.132 {ISO week-based calendar 1945-W01-7} { - clock format -788400000 -format {%a %A %g %G %u %V %w} -gmt true; # 1945-W01-7 -} {Sun Sunday 45 1945 7 01 0} -test clock-3.133 {ISO week-based calendar 1945-W02-1} { - clock format -788313600 -format {%a %A %g %G %u %V %w} -gmt true; # 1945-W02-1 -} {Mon Monday 45 1945 1 02 1} -test clock-3.134 {ISO week-based calendar 1947-W52-1} { - clock format -695174400 -format {%a %A %g %G %u %V %w} -gmt true; # 1947-W52-1 -} {Mon Monday 47 1947 1 52 1} -test clock-3.135 {ISO week-based calendar 1947-W52-7} { - clock format -694656000 -format {%a %A %g %G %u %V %w} -gmt true; # 1947-W52-7 -} {Sun Sunday 47 1947 7 52 0} -test clock-3.136 {ISO week-based calendar 1948-W01-1} { - clock format -694569600 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W01-1 -} {Mon Monday 48 1948 1 01 1} -test clock-3.137 {ISO week-based calendar 1948-W01-4} { - clock format -694310400 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W01-4 -} {Thu Thursday 48 1948 4 01 4} -test clock-3.138 {ISO week-based calendar 1948-W01-7} { - clock format -694051200 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W01-7 -} {Sun Sunday 48 1948 7 01 0} -test clock-3.139 {ISO week-based calendar 1948-W02-1} { - clock format -693964800 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W02-1 -} {Mon Monday 48 1948 1 02 1} -test clock-3.140 {ISO week-based calendar 1948-W53-1} { - clock format -663120000 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W53-1 -} {Mon Monday 48 1948 1 53 1} -test clock-3.141 {ISO week-based calendar 1948-W53-6} { - clock format -662688000 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W53-6 -} {Sat Saturday 48 1948 6 53 6} -test clock-3.142 {ISO week-based calendar 1948-W53-7} { - clock format -662601600 -format {%a %A %g %G %u %V %w} -gmt true; # 1948-W53-7 -} {Sun Sunday 48 1948 7 53 0} -test clock-3.143 {ISO week-based calendar 1949-W01-1} { - clock format -662515200 -format {%a %A %g %G %u %V %w} -gmt true; # 1949-W01-1 -} {Mon Monday 49 1949 1 01 1} -test clock-3.144 {ISO week-based calendar 1949-W01-7} { - clock format -661996800 -format {%a %A %g %G %u %V %w} -gmt true; # 1949-W01-7 -} {Sun Sunday 49 1949 7 01 0} -test clock-3.145 {ISO week-based calendar 1949-W02-1} { - clock format -661910400 -format {%a %A %g %G %u %V %w} -gmt true; # 1949-W02-1 -} {Mon Monday 49 1949 1 02 1} -test clock-3.146 {ISO week-based calendar 1951-W52-1} { - clock format -568771200 -format {%a %A %g %G %u %V %w} -gmt true; # 1951-W52-1 -} {Mon Monday 51 1951 1 52 1} -test clock-3.147 {ISO week-based calendar 1951-W52-7} { - clock format -568252800 -format {%a %A %g %G %u %V %w} -gmt true; # 1951-W52-7 -} {Sun Sunday 51 1951 7 52 0} -test clock-3.148 {ISO week-based calendar 1952-W01-1} { - clock format -568166400 -format {%a %A %g %G %u %V %w} -gmt true; # 1952-W01-1 -} {Mon Monday 52 1952 1 01 1} -test clock-3.149 {ISO week-based calendar 1952-W01-2} { - clock format -568080000 -format {%a %A %g %G %u %V %w} -gmt true; # 1952-W01-2 -} {Tue Tuesday 52 1952 2 01 2} -test clock-3.150 {ISO week-based calendar 1952-W01-7} { - clock format -567648000 -format {%a %A %g %G %u %V %w} -gmt true; # 1952-W01-7 -} {Sun Sunday 52 1952 7 01 0} -test clock-3.151 {ISO week-based calendar 1952-W02-1} { - clock format -567561600 -format {%a %A %g %G %u %V %w} -gmt true; # 1952-W02-1 -} {Mon Monday 52 1952 1 02 1} -test clock-3.152 {ISO week-based calendar 1952-W52-1} { - clock format -537321600 -format {%a %A %g %G %u %V %w} -gmt true; # 1952-W52-1 -} {Mon Monday 52 1952 1 52 1} -test clock-3.153 {ISO week-based calendar 1952-W52-7} { - clock format -536803200 -format {%a %A %g %G %u %V %w} -gmt true; # 1952-W52-7 -} {Sun Sunday 52 1952 7 52 0} -test clock-3.154 {ISO week-based calendar 1953-W01-1} { - clock format -536716800 -format {%a %A %g %G %u %V %w} -gmt true; # 1953-W01-1 -} {Mon Monday 53 1953 1 01 1} -test clock-3.155 {ISO week-based calendar 1953-W01-4} { - clock format -536457600 -format {%a %A %g %G %u %V %w} -gmt true; # 1953-W01-4 -} {Thu Thursday 53 1953 4 01 4} -test clock-3.156 {ISO week-based calendar 1953-W01-7} { - clock format -536198400 -format {%a %A %g %G %u %V %w} -gmt true; # 1953-W01-7 -} {Sun Sunday 53 1953 7 01 0} -test clock-3.157 {ISO week-based calendar 1953-W02-1} { - clock format -536112000 -format {%a %A %g %G %u %V %w} -gmt true; # 1953-W02-1 -} {Mon Monday 53 1953 1 02 1} -test clock-3.158 {ISO week-based calendar 1955-W52-1} { - clock format -442368000 -format {%a %A %g %G %u %V %w} -gmt true; # 1955-W52-1 -} {Mon Monday 55 1955 1 52 1} -test clock-3.159 {ISO week-based calendar 1955-W52-6} { - clock format -441936000 -format {%a %A %g %G %u %V %w} -gmt true; # 1955-W52-6 -} {Sat Saturday 55 1955 6 52 6} -test clock-3.160 {ISO week-based calendar 1955-W52-7} { - clock format -441849600 -format {%a %A %g %G %u %V %w} -gmt true; # 1955-W52-7 -} {Sun Sunday 55 1955 7 52 0} -test clock-3.161 {ISO week-based calendar 1956-W01-1} { - clock format -441763200 -format {%a %A %g %G %u %V %w} -gmt true; # 1956-W01-1 -} {Mon Monday 56 1956 1 01 1} -test clock-3.162 {ISO week-based calendar 1956-W01-7} { - clock format -441244800 -format {%a %A %g %G %u %V %w} -gmt true; # 1956-W01-7 -} {Sun Sunday 56 1956 7 01 0} -test clock-3.163 {ISO week-based calendar 1956-W02-1} { - clock format -441158400 -format {%a %A %g %G %u %V %w} -gmt true; # 1956-W02-1 -} {Mon Monday 56 1956 1 02 1} -test clock-3.164 {ISO week-based calendar 1956-W52-1} { - clock format -410918400 -format {%a %A %g %G %u %V %w} -gmt true; # 1956-W52-1 -} {Mon Monday 56 1956 1 52 1} -test clock-3.165 {ISO week-based calendar 1956-W52-7} { - clock format -410400000 -format {%a %A %g %G %u %V %w} -gmt true; # 1956-W52-7 -} {Sun Sunday 56 1956 7 52 0} -test clock-3.166 {ISO week-based calendar 1957-W01-1} { - clock format -410313600 -format {%a %A %g %G %u %V %w} -gmt true; # 1957-W01-1 -} {Mon Monday 57 1957 1 01 1} -test clock-3.167 {ISO week-based calendar 1957-W01-2} { - clock format -410227200 -format {%a %A %g %G %u %V %w} -gmt true; # 1957-W01-2 -} {Tue Tuesday 57 1957 2 01 2} -test clock-3.168 {ISO week-based calendar 1957-W01-7} { - clock format -409795200 -format {%a %A %g %G %u %V %w} -gmt true; # 1957-W01-7 -} {Sun Sunday 57 1957 7 01 0} -test clock-3.169 {ISO week-based calendar 1957-W02-1} { - clock format -409708800 -format {%a %A %g %G %u %V %w} -gmt true; # 1957-W02-1 -} {Mon Monday 57 1957 1 02 1} -test clock-3.170 {ISO week-based calendar 1958-W52-1} { - clock format -348019200 -format {%a %A %g %G %u %V %w} -gmt true; # 1958-W52-1 -} {Mon Monday 58 1958 1 52 1} -test clock-3.171 {ISO week-based calendar 1958-W52-7} { - clock format -347500800 -format {%a %A %g %G %u %V %w} -gmt true; # 1958-W52-7 -} {Sun Sunday 58 1958 7 52 0} -test clock-3.172 {ISO week-based calendar 1959-W01-1} { - clock format -347414400 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W01-1 -} {Mon Monday 59 1959 1 01 1} -test clock-3.173 {ISO week-based calendar 1959-W01-4} { - clock format -347155200 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W01-4 -} {Thu Thursday 59 1959 4 01 4} -test clock-3.174 {ISO week-based calendar 1959-W01-7} { - clock format -346896000 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W01-7 -} {Sun Sunday 59 1959 7 01 0} -test clock-3.175 {ISO week-based calendar 1959-W02-1} { - clock format -346809600 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W02-1 -} {Mon Monday 59 1959 1 02 1} -test clock-3.176 {ISO week-based calendar 1959-W53-1} { - clock format -315964800 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W53-1 -} {Mon Monday 59 1959 1 53 1} -test clock-3.177 {ISO week-based calendar 1959-W53-5} { - clock format -315619200 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W53-5 -} {Fri Friday 59 1959 5 53 5} -test clock-3.178 {ISO week-based calendar 1959-W53-7} { - clock format -315446400 -format {%a %A %g %G %u %V %w} -gmt true; # 1959-W53-7 -} {Sun Sunday 59 1959 7 53 0} -test clock-3.179 {ISO week-based calendar 1960-W01-1} { - clock format -315360000 -format {%a %A %g %G %u %V %w} -gmt true; # 1960-W01-1 -} {Mon Monday 60 1960 1 01 1} -test clock-3.180 {ISO week-based calendar 1960-W01-7} { - clock format -314841600 -format {%a %A %g %G %u %V %w} -gmt true; # 1960-W01-7 -} {Sun Sunday 60 1960 7 01 0} -test clock-3.181 {ISO week-based calendar 1960-W02-1} { - clock format -314755200 -format {%a %A %g %G %u %V %w} -gmt true; # 1960-W02-1 -} {Mon Monday 60 1960 1 02 1} -test clock-3.182 {ISO week-based calendar 1960-W52-1} { - clock format -284515200 -format {%a %A %g %G %u %V %w} -gmt true; # 1960-W52-1 -} {Mon Monday 60 1960 1 52 1} -test clock-3.183 {ISO week-based calendar 1960-W52-6} { - clock format -284083200 -format {%a %A %g %G %u %V %w} -gmt true; # 1960-W52-6 -} {Sat Saturday 60 1960 6 52 6} -test clock-3.184 {ISO week-based calendar 1960-W52-7} { - clock format -283996800 -format {%a %A %g %G %u %V %w} -gmt true; # 1960-W52-7 -} {Sun Sunday 60 1960 7 52 0} -test clock-3.185 {ISO week-based calendar 1961-W01-1} { - clock format -283910400 -format {%a %A %g %G %u %V %w} -gmt true; # 1961-W01-1 -} {Mon Monday 61 1961 1 01 1} -test clock-3.186 {ISO week-based calendar 1961-W01-7} { - clock format -283392000 -format {%a %A %g %G %u %V %w} -gmt true; # 1961-W01-7 -} {Sun Sunday 61 1961 7 01 0} -test clock-3.187 {ISO week-based calendar 1961-W02-1} { - clock format -283305600 -format {%a %A %g %G %u %V %w} -gmt true; # 1961-W02-1 -} {Mon Monday 61 1961 1 02 1} -test clock-3.188 {ISO week-based calendar 1961-W52-1} { - clock format -253065600 -format {%a %A %g %G %u %V %w} -gmt true; # 1961-W52-1 -} {Mon Monday 61 1961 1 52 1} -test clock-3.189 {ISO week-based calendar 1961-W52-7} { - clock format -252547200 -format {%a %A %g %G %u %V %w} -gmt true; # 1961-W52-7 -} {Sun Sunday 61 1961 7 52 0} -test clock-3.190 {ISO week-based calendar 1962-W01-1} { - clock format -252460800 -format {%a %A %g %G %u %V %w} -gmt true; # 1962-W01-1 -} {Mon Monday 62 1962 1 01 1} -test clock-3.191 {ISO week-based calendar 1962-W01-7} { - clock format -251942400 -format {%a %A %g %G %u %V %w} -gmt true; # 1962-W01-7 -} {Sun Sunday 62 1962 7 01 0} -test clock-3.192 {ISO week-based calendar 1962-W02-1} { - clock format -251856000 -format {%a %A %g %G %u %V %w} -gmt true; # 1962-W02-1 -} {Mon Monday 62 1962 1 02 1} -test clock-3.193 {ISO week-based calendar 1962-W52-1} { - clock format -221616000 -format {%a %A %g %G %u %V %w} -gmt true; # 1962-W52-1 -} {Mon Monday 62 1962 1 52 1} -test clock-3.194 {ISO week-based calendar 1962-W52-7} { - clock format -221097600 -format {%a %A %g %G %u %V %w} -gmt true; # 1962-W52-7 -} {Sun Sunday 62 1962 7 52 0} -test clock-3.195 {ISO week-based calendar 1963-W01-1} { - clock format -221011200 -format {%a %A %g %G %u %V %w} -gmt true; # 1963-W01-1 -} {Mon Monday 63 1963 1 01 1} -test clock-3.196 {ISO week-based calendar 1963-W01-2} { - clock format -220924800 -format {%a %A %g %G %u %V %w} -gmt true; # 1963-W01-2 -} {Tue Tuesday 63 1963 2 01 2} -test clock-3.197 {ISO week-based calendar 1963-W01-7} { - clock format -220492800 -format {%a %A %g %G %u %V %w} -gmt true; # 1963-W01-7 -} {Sun Sunday 63 1963 7 01 0} -test clock-3.198 {ISO week-based calendar 1963-W02-1} { - clock format -220406400 -format {%a %A %g %G %u %V %w} -gmt true; # 1963-W02-1 -} {Mon Monday 63 1963 1 02 1} -test clock-3.199 {ISO week-based calendar 1963-W52-1} { - clock format -190166400 -format {%a %A %g %G %u %V %w} -gmt true; # 1963-W52-1 -} {Mon Monday 63 1963 1 52 1} -test clock-3.200 {ISO week-based calendar 1963-W52-7} { - clock format -189648000 -format {%a %A %g %G %u %V %w} -gmt true; # 1963-W52-7 -} {Sun Sunday 63 1963 7 52 0} -test clock-3.201 {ISO week-based calendar 1964-W01-1} { - clock format -189561600 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W01-1 -} {Mon Monday 64 1964 1 01 1} -test clock-3.202 {ISO week-based calendar 1964-W01-3} { - clock format -189388800 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W01-3 -} {Wed Wednesday 64 1964 3 01 3} -test clock-3.203 {ISO week-based calendar 1964-W01-7} { - clock format -189043200 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W01-7 -} {Sun Sunday 64 1964 7 01 0} -test clock-3.204 {ISO week-based calendar 1964-W02-1} { - clock format -188956800 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W02-1 -} {Mon Monday 64 1964 1 02 1} -test clock-3.205 {ISO week-based calendar 1964-W53-1} { - clock format -158112000 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W53-1 -} {Mon Monday 64 1964 1 53 1} -test clock-3.206 {ISO week-based calendar 1964-W53-5} { - clock format -157766400 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W53-5 -} {Fri Friday 64 1964 5 53 5} -test clock-3.207 {ISO week-based calendar 1964-W53-7} { - clock format -157593600 -format {%a %A %g %G %u %V %w} -gmt true; # 1964-W53-7 -} {Sun Sunday 64 1964 7 53 0} -test clock-3.208 {ISO week-based calendar 1965-W01-1} { - clock format -157507200 -format {%a %A %g %G %u %V %w} -gmt true; # 1965-W01-1 -} {Mon Monday 65 1965 1 01 1} -test clock-3.209 {ISO week-based calendar 1965-W01-7} { - clock format -156988800 -format {%a %A %g %G %u %V %w} -gmt true; # 1965-W01-7 -} {Sun Sunday 65 1965 7 01 0} -test clock-3.210 {ISO week-based calendar 1965-W02-1} { - clock format -156902400 -format {%a %A %g %G %u %V %w} -gmt true; # 1965-W02-1 -} {Mon Monday 65 1965 1 02 1} -test clock-3.211 {ISO week-based calendar 1965-W52-1} { - clock format -126662400 -format {%a %A %g %G %u %V %w} -gmt true; # 1965-W52-1 -} {Mon Monday 65 1965 1 52 1} -test clock-3.212 {ISO week-based calendar 1965-W52-6} { - clock format -126230400 -format {%a %A %g %G %u %V %w} -gmt true; # 1965-W52-6 -} {Sat Saturday 65 1965 6 52 6} -test clock-3.213 {ISO week-based calendar 1965-W52-7} { - clock format -126144000 -format {%a %A %g %G %u %V %w} -gmt true; # 1965-W52-7 -} {Sun Sunday 65 1965 7 52 0} -test clock-3.214 {ISO week-based calendar 1966-W01-1} { - clock format -126057600 -format {%a %A %g %G %u %V %w} -gmt true; # 1966-W01-1 -} {Mon Monday 66 1966 1 01 1} -test clock-3.215 {ISO week-based calendar 1966-W01-7} { - clock format -125539200 -format {%a %A %g %G %u %V %w} -gmt true; # 1966-W01-7 -} {Sun Sunday 66 1966 7 01 0} -test clock-3.216 {ISO week-based calendar 1966-W02-1} { - clock format -125452800 -format {%a %A %g %G %u %V %w} -gmt true; # 1966-W02-1 -} {Mon Monday 66 1966 1 02 1} -test clock-3.217 {ISO week-based calendar 1966-W52-1} { - clock format -95212800 -format {%a %A %g %G %u %V %w} -gmt true; # 1966-W52-1 -} {Mon Monday 66 1966 1 52 1} -test clock-3.218 {ISO week-based calendar 1966-W52-6} { - clock format -94780800 -format {%a %A %g %G %u %V %w} -gmt true; # 1966-W52-6 -} {Sat Saturday 66 1966 6 52 6} -test clock-3.219 {ISO week-based calendar 1966-W52-7} { - clock format -94694400 -format {%a %A %g %G %u %V %w} -gmt true; # 1966-W52-7 -} {Sun Sunday 66 1966 7 52 0} -test clock-3.220 {ISO week-based calendar 1967-W01-1} { - clock format -94608000 -format {%a %A %g %G %u %V %w} -gmt true; # 1967-W01-1 -} {Mon Monday 67 1967 1 01 1} -test clock-3.221 {ISO week-based calendar 1967-W01-7} { - clock format -94089600 -format {%a %A %g %G %u %V %w} -gmt true; # 1967-W01-7 -} {Sun Sunday 67 1967 7 01 0} -test clock-3.222 {ISO week-based calendar 1967-W02-1} { - clock format -94003200 -format {%a %A %g %G %u %V %w} -gmt true; # 1967-W02-1 -} {Mon Monday 67 1967 1 02 1} -test clock-3.223 {ISO week-based calendar 1967-W52-1} { - clock format -63763200 -format {%a %A %g %G %u %V %w} -gmt true; # 1967-W52-1 -} {Mon Monday 67 1967 1 52 1} -test clock-3.224 {ISO week-based calendar 1967-W52-7} { - clock format -63244800 -format {%a %A %g %G %u %V %w} -gmt true; # 1967-W52-7 -} {Sun Sunday 67 1967 7 52 0} -test clock-3.225 {ISO week-based calendar 1968-W01-1} { - clock format -63158400 -format {%a %A %g %G %u %V %w} -gmt true; # 1968-W01-1 -} {Mon Monday 68 1968 1 01 1} -test clock-3.226 {ISO week-based calendar 1968-W01-7} { - clock format -62640000 -format {%a %A %g %G %u %V %w} -gmt true; # 1968-W01-7 -} {Sun Sunday 68 1968 7 01 0} -test clock-3.227 {ISO week-based calendar 1968-W02-1} { - clock format -62553600 -format {%a %A %g %G %u %V %w} -gmt true; # 1968-W02-1 -} {Mon Monday 68 1968 1 02 1} -test clock-3.228 {ISO week-based calendar 1968-W52-1} { - clock format -32313600 -format {%a %A %g %G %u %V %w} -gmt true; # 1968-W52-1 -} {Mon Monday 68 1968 1 52 1} -test clock-3.229 {ISO week-based calendar 1968-W52-7} { - clock format -31795200 -format {%a %A %g %G %u %V %w} -gmt true; # 1968-W52-7 -} {Sun Sunday 68 1968 7 52 0} -test clock-3.230 {ISO week-based calendar 1969-W01-1} { - clock format -31708800 -format {%a %A %g %G %u %V %w} -gmt true; # 1969-W01-1 -} {Mon Monday 69 1969 1 01 1} -test clock-3.231 {ISO week-based calendar 1969-W01-3} { - clock format -31536000 -format {%a %A %g %G %u %V %w} -gmt true; # 1969-W01-3 -} {Wed Wednesday 69 1969 3 01 3} -test clock-3.232 {ISO week-based calendar 1969-W01-7} { - clock format -31190400 -format {%a %A %g %G %u %V %w} -gmt true; # 1969-W01-7 -} {Sun Sunday 69 1969 7 01 0} -test clock-3.233 {ISO week-based calendar 1969-W02-1} { - clock format -31104000 -format {%a %A %g %G %u %V %w} -gmt true; # 1969-W02-1 -} {Mon Monday 69 1969 1 02 1} -test clock-3.234 {ISO week-based calendar 1969-W52-1} { - clock format -864000 -format {%a %A %g %G %u %V %w} -gmt true; # 1969-W52-1 -} {Mon Monday 69 1969 1 52 1} -test clock-3.235 {ISO week-based calendar 1969-W52-7} { - clock format -345600 -format {%a %A %g %G %u %V %w} -gmt true; # 1969-W52-7 -} {Sun Sunday 69 1969 7 52 0} -test clock-3.236 {ISO week-based calendar 1970-W01-1} { - clock format -259200 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W01-1 -} {Mon Monday 70 1970 1 01 1} -test clock-3.237 {ISO week-based calendar 1970-W01-4} { - clock format 0 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W01-4 -} {Thu Thursday 70 1970 4 01 4} -test clock-3.238 {ISO week-based calendar 1970-W01-7} { - clock format 259200 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W01-7 -} {Sun Sunday 70 1970 7 01 0} -test clock-3.239 {ISO week-based calendar 1970-W02-1} { - clock format 345600 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W02-1 -} {Mon Monday 70 1970 1 02 1} -test clock-3.240 {ISO week-based calendar 1970-W53-1} { - clock format 31190400 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W53-1 -} {Mon Monday 70 1970 1 53 1} -test clock-3.241 {ISO week-based calendar 1970-W53-5} { - clock format 31536000 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W53-5 -} {Fri Friday 70 1970 5 53 5} -test clock-3.242 {ISO week-based calendar 1970-W53-7} { - clock format 31708800 -format {%a %A %g %G %u %V %w} -gmt true; # 1970-W53-7 -} {Sun Sunday 70 1970 7 53 0} -test clock-3.243 {ISO week-based calendar 1971-W01-1} { - clock format 31795200 -format {%a %A %g %G %u %V %w} -gmt true; # 1971-W01-1 -} {Mon Monday 71 1971 1 01 1} -test clock-3.244 {ISO week-based calendar 1971-W01-7} { - clock format 32313600 -format {%a %A %g %G %u %V %w} -gmt true; # 1971-W01-7 -} {Sun Sunday 71 1971 7 01 0} -test clock-3.245 {ISO week-based calendar 1971-W02-1} { - clock format 32400000 -format {%a %A %g %G %u %V %w} -gmt true; # 1971-W02-1 -} {Mon Monday 71 1971 1 02 1} -test clock-3.246 {ISO week-based calendar 1971-W52-1} { - clock format 62640000 -format {%a %A %g %G %u %V %w} -gmt true; # 1971-W52-1 -} {Mon Monday 71 1971 1 52 1} -test clock-3.247 {ISO week-based calendar 1971-W52-6} { - clock format 63072000 -format {%a %A %g %G %u %V %w} -gmt true; # 1971-W52-6 -} {Sat Saturday 71 1971 6 52 6} -test clock-3.248 {ISO week-based calendar 1971-W52-7} { - clock format 63158400 -format {%a %A %g %G %u %V %w} -gmt true; # 1971-W52-7 -} {Sun Sunday 71 1971 7 52 0} -test clock-3.249 {ISO week-based calendar 1972-W01-1} { - clock format 63244800 -format {%a %A %g %G %u %V %w} -gmt true; # 1972-W01-1 -} {Mon Monday 72 1972 1 01 1} -test clock-3.250 {ISO week-based calendar 1972-W01-7} { - clock format 63763200 -format {%a %A %g %G %u %V %w} -gmt true; # 1972-W01-7 -} {Sun Sunday 72 1972 7 01 0} -test clock-3.251 {ISO week-based calendar 1972-W02-1} { - clock format 63849600 -format {%a %A %g %G %u %V %w} -gmt true; # 1972-W02-1 -} {Mon Monday 72 1972 1 02 1} -test clock-3.252 {ISO week-based calendar 1972-W52-1} { - clock format 94089600 -format {%a %A %g %G %u %V %w} -gmt true; # 1972-W52-1 -} {Mon Monday 72 1972 1 52 1} -test clock-3.253 {ISO week-based calendar 1972-W52-7} { - clock format 94608000 -format {%a %A %g %G %u %V %w} -gmt true; # 1972-W52-7 -} {Sun Sunday 72 1972 7 52 0} -test clock-3.254 {ISO week-based calendar 1973-W01-1} { - clock format 94694400 -format {%a %A %g %G %u %V %w} -gmt true; # 1973-W01-1 -} {Mon Monday 73 1973 1 01 1} -test clock-3.255 {ISO week-based calendar 1973-W01-7} { - clock format 95212800 -format {%a %A %g %G %u %V %w} -gmt true; # 1973-W01-7 -} {Sun Sunday 73 1973 7 01 0} -test clock-3.256 {ISO week-based calendar 1973-W02-1} { - clock format 95299200 -format {%a %A %g %G %u %V %w} -gmt true; # 1973-W02-1 -} {Mon Monday 73 1973 1 02 1} -test clock-3.257 {ISO week-based calendar 1973-W52-1} { - clock format 125539200 -format {%a %A %g %G %u %V %w} -gmt true; # 1973-W52-1 -} {Mon Monday 73 1973 1 52 1} -test clock-3.258 {ISO week-based calendar 1973-W52-7} { - clock format 126057600 -format {%a %A %g %G %u %V %w} -gmt true; # 1973-W52-7 -} {Sun Sunday 73 1973 7 52 0} -test clock-3.259 {ISO week-based calendar 1974-W01-1} { - clock format 126144000 -format {%a %A %g %G %u %V %w} -gmt true; # 1974-W01-1 -} {Mon Monday 74 1974 1 01 1} -test clock-3.260 {ISO week-based calendar 1974-W01-2} { - clock format 126230400 -format {%a %A %g %G %u %V %w} -gmt true; # 1974-W01-2 -} {Tue Tuesday 74 1974 2 01 2} -test clock-3.261 {ISO week-based calendar 1974-W01-7} { - clock format 126662400 -format {%a %A %g %G %u %V %w} -gmt true; # 1974-W01-7 -} {Sun Sunday 74 1974 7 01 0} -test clock-3.262 {ISO week-based calendar 1974-W02-1} { - clock format 126748800 -format {%a %A %g %G %u %V %w} -gmt true; # 1974-W02-1 -} {Mon Monday 74 1974 1 02 1} -test clock-3.263 {ISO week-based calendar 1974-W52-1} { - clock format 156988800 -format {%a %A %g %G %u %V %w} -gmt true; # 1974-W52-1 -} {Mon Monday 74 1974 1 52 1} -test clock-3.264 {ISO week-based calendar 1974-W52-7} { - clock format 157507200 -format {%a %A %g %G %u %V %w} -gmt true; # 1974-W52-7 -} {Sun Sunday 74 1974 7 52 0} -test clock-3.265 {ISO week-based calendar 1975-W01-1} { - clock format 157593600 -format {%a %A %g %G %u %V %w} -gmt true; # 1975-W01-1 -} {Mon Monday 75 1975 1 01 1} -test clock-3.266 {ISO week-based calendar 1975-W01-3} { - clock format 157766400 -format {%a %A %g %G %u %V %w} -gmt true; # 1975-W01-3 -} {Wed Wednesday 75 1975 3 01 3} -test clock-3.267 {ISO week-based calendar 1975-W01-7} { - clock format 158112000 -format {%a %A %g %G %u %V %w} -gmt true; # 1975-W01-7 -} {Sun Sunday 75 1975 7 01 0} -test clock-3.268 {ISO week-based calendar 1975-W02-1} { - clock format 158198400 -format {%a %A %g %G %u %V %w} -gmt true; # 1975-W02-1 -} {Mon Monday 75 1975 1 02 1} -test clock-3.269 {ISO week-based calendar 1975-W52-1} { - clock format 188438400 -format {%a %A %g %G %u %V %w} -gmt true; # 1975-W52-1 -} {Mon Monday 75 1975 1 52 1} -test clock-3.270 {ISO week-based calendar 1975-W52-7} { - clock format 188956800 -format {%a %A %g %G %u %V %w} -gmt true; # 1975-W52-7 -} {Sun Sunday 75 1975 7 52 0} -test clock-3.271 {ISO week-based calendar 1976-W01-1} { - clock format 189043200 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W01-1 -} {Mon Monday 76 1976 1 01 1} -test clock-3.272 {ISO week-based calendar 1976-W01-4} { - clock format 189302400 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W01-4 -} {Thu Thursday 76 1976 4 01 4} -test clock-3.273 {ISO week-based calendar 1976-W01-7} { - clock format 189561600 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W01-7 -} {Sun Sunday 76 1976 7 01 0} -test clock-3.274 {ISO week-based calendar 1976-W02-1} { - clock format 189648000 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W02-1 -} {Mon Monday 76 1976 1 02 1} -test clock-3.275 {ISO week-based calendar 1976-W53-1} { - clock format 220492800 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W53-1 -} {Mon Monday 76 1976 1 53 1} -test clock-3.276 {ISO week-based calendar 1976-W53-6} { - clock format 220924800 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W53-6 -} {Sat Saturday 76 1976 6 53 6} -test clock-3.277 {ISO week-based calendar 1976-W53-7} { - clock format 221011200 -format {%a %A %g %G %u %V %w} -gmt true; # 1976-W53-7 -} {Sun Sunday 76 1976 7 53 0} -test clock-3.278 {ISO week-based calendar 1977-W01-1} { - clock format 221097600 -format {%a %A %g %G %u %V %w} -gmt true; # 1977-W01-1 -} {Mon Monday 77 1977 1 01 1} -test clock-3.279 {ISO week-based calendar 1977-W01-7} { - clock format 221616000 -format {%a %A %g %G %u %V %w} -gmt true; # 1977-W01-7 -} {Sun Sunday 77 1977 7 01 0} -test clock-3.280 {ISO week-based calendar 1977-W02-1} { - clock format 221702400 -format {%a %A %g %G %u %V %w} -gmt true; # 1977-W02-1 -} {Mon Monday 77 1977 1 02 1} -test clock-3.281 {ISO week-based calendar 1977-W52-1} { - clock format 251942400 -format {%a %A %g %G %u %V %w} -gmt true; # 1977-W52-1 -} {Mon Monday 77 1977 1 52 1} -test clock-3.282 {ISO week-based calendar 1977-W52-6} { - clock format 252374400 -format {%a %A %g %G %u %V %w} -gmt true; # 1977-W52-6 -} {Sat Saturday 77 1977 6 52 6} -test clock-3.283 {ISO week-based calendar 1977-W52-7} { - clock format 252460800 -format {%a %A %g %G %u %V %w} -gmt true; # 1977-W52-7 -} {Sun Sunday 77 1977 7 52 0} -test clock-3.284 {ISO week-based calendar 1978-W01-1} { - clock format 252547200 -format {%a %A %g %G %u %V %w} -gmt true; # 1978-W01-1 -} {Mon Monday 78 1978 1 01 1} -test clock-3.285 {ISO week-based calendar 1978-W01-7} { - clock format 253065600 -format {%a %A %g %G %u %V %w} -gmt true; # 1978-W01-7 -} {Sun Sunday 78 1978 7 01 0} -test clock-3.286 {ISO week-based calendar 1978-W02-1} { - clock format 253152000 -format {%a %A %g %G %u %V %w} -gmt true; # 1978-W02-1 -} {Mon Monday 78 1978 1 02 1} -test clock-3.287 {ISO week-based calendar 1978-W52-1} { - clock format 283392000 -format {%a %A %g %G %u %V %w} -gmt true; # 1978-W52-1 -} {Mon Monday 78 1978 1 52 1} -test clock-3.288 {ISO week-based calendar 1978-W52-7} { - clock format 283910400 -format {%a %A %g %G %u %V %w} -gmt true; # 1978-W52-7 -} {Sun Sunday 78 1978 7 52 0} -test clock-3.289 {ISO week-based calendar 1979-W01-1} { - clock format 283996800 -format {%a %A %g %G %u %V %w} -gmt true; # 1979-W01-1 -} {Mon Monday 79 1979 1 01 1} -test clock-3.290 {ISO week-based calendar 1979-W01-7} { - clock format 284515200 -format {%a %A %g %G %u %V %w} -gmt true; # 1979-W01-7 -} {Sun Sunday 79 1979 7 01 0} -test clock-3.291 {ISO week-based calendar 1979-W02-1} { - clock format 284601600 -format {%a %A %g %G %u %V %w} -gmt true; # 1979-W02-1 -} {Mon Monday 79 1979 1 02 1} -test clock-3.292 {ISO week-based calendar 1979-W52-1} { - clock format 314841600 -format {%a %A %g %G %u %V %w} -gmt true; # 1979-W52-1 -} {Mon Monday 79 1979 1 52 1} -test clock-3.293 {ISO week-based calendar 1979-W52-7} { - clock format 315360000 -format {%a %A %g %G %u %V %w} -gmt true; # 1979-W52-7 -} {Sun Sunday 79 1979 7 52 0} -test clock-3.294 {ISO week-based calendar 1980-W01-1} { - clock format 315446400 -format {%a %A %g %G %u %V %w} -gmt true; # 1980-W01-1 -} {Mon Monday 80 1980 1 01 1} -test clock-3.295 {ISO week-based calendar 1980-W01-2} { - clock format 315532800 -format {%a %A %g %G %u %V %w} -gmt true; # 1980-W01-2 -} {Tue Tuesday 80 1980 2 01 2} -test clock-3.296 {ISO week-based calendar 1980-W01-7} { - clock format 315964800 -format {%a %A %g %G %u %V %w} -gmt true; # 1980-W01-7 -} {Sun Sunday 80 1980 7 01 0} -test clock-3.297 {ISO week-based calendar 1980-W02-1} { - clock format 316051200 -format {%a %A %g %G %u %V %w} -gmt true; # 1980-W02-1 -} {Mon Monday 80 1980 1 02 1} -test clock-3.298 {ISO week-based calendar 1980-W52-1} { - clock format 346291200 -format {%a %A %g %G %u %V %w} -gmt true; # 1980-W52-1 -} {Mon Monday 80 1980 1 52 1} -test clock-3.299 {ISO week-based calendar 1980-W52-7} { - clock format 346809600 -format {%a %A %g %G %u %V %w} -gmt true; # 1980-W52-7 -} {Sun Sunday 80 1980 7 52 0} -test clock-3.300 {ISO week-based calendar 1981-W01-1} { - clock format 346896000 -format {%a %A %g %G %u %V %w} -gmt true; # 1981-W01-1 -} {Mon Monday 81 1981 1 01 1} -test clock-3.301 {ISO week-based calendar 1981-W01-4} { - clock format 347155200 -format {%a %A %g %G %u %V %w} -gmt true; # 1981-W01-4 -} {Thu Thursday 81 1981 4 01 4} -test clock-3.302 {ISO week-based calendar 1981-W01-7} { - clock format 347414400 -format {%a %A %g %G %u %V %w} -gmt true; # 1981-W01-7 -} {Sun Sunday 81 1981 7 01 0} -test clock-3.303 {ISO week-based calendar 1981-W02-1} { - clock format 347500800 -format {%a %A %g %G %u %V %w} -gmt true; # 1981-W02-1 -} {Mon Monday 81 1981 1 02 1} -test clock-3.304 {ISO week-based calendar 1983-W52-1} { - clock format 441244800 -format {%a %A %g %G %u %V %w} -gmt true; # 1983-W52-1 -} {Mon Monday 83 1983 1 52 1} -test clock-3.305 {ISO week-based calendar 1983-W52-6} { - clock format 441676800 -format {%a %A %g %G %u %V %w} -gmt true; # 1983-W52-6 -} {Sat Saturday 83 1983 6 52 6} -test clock-3.306 {ISO week-based calendar 1983-W52-7} { - clock format 441763200 -format {%a %A %g %G %u %V %w} -gmt true; # 1983-W52-7 -} {Sun Sunday 83 1983 7 52 0} -test clock-3.307 {ISO week-based calendar 1984-W01-1} { - clock format 441849600 -format {%a %A %g %G %u %V %w} -gmt true; # 1984-W01-1 -} {Mon Monday 84 1984 1 01 1} -test clock-3.308 {ISO week-based calendar 1984-W01-7} { - clock format 442368000 -format {%a %A %g %G %u %V %w} -gmt true; # 1984-W01-7 -} {Sun Sunday 84 1984 7 01 0} -test clock-3.309 {ISO week-based calendar 1984-W02-1} { - clock format 442454400 -format {%a %A %g %G %u %V %w} -gmt true; # 1984-W02-1 -} {Mon Monday 84 1984 1 02 1} -test clock-3.310 {ISO week-based calendar 1984-W52-1} { - clock format 472694400 -format {%a %A %g %G %u %V %w} -gmt true; # 1984-W52-1 -} {Mon Monday 84 1984 1 52 1} -test clock-3.311 {ISO week-based calendar 1984-W52-7} { - clock format 473212800 -format {%a %A %g %G %u %V %w} -gmt true; # 1984-W52-7 -} {Sun Sunday 84 1984 7 52 0} -test clock-3.312 {ISO week-based calendar 1985-W01-1} { - clock format 473299200 -format {%a %A %g %G %u %V %w} -gmt true; # 1985-W01-1 -} {Mon Monday 85 1985 1 01 1} -test clock-3.313 {ISO week-based calendar 1985-W01-2} { - clock format 473385600 -format {%a %A %g %G %u %V %w} -gmt true; # 1985-W01-2 -} {Tue Tuesday 85 1985 2 01 2} -test clock-3.314 {ISO week-based calendar 1985-W01-7} { - clock format 473817600 -format {%a %A %g %G %u %V %w} -gmt true; # 1985-W01-7 -} {Sun Sunday 85 1985 7 01 0} -test clock-3.315 {ISO week-based calendar 1985-W02-1} { - clock format 473904000 -format {%a %A %g %G %u %V %w} -gmt true; # 1985-W02-1 -} {Mon Monday 85 1985 1 02 1} -test clock-3.316 {ISO week-based calendar 1987-W53-1} { - clock format 567648000 -format {%a %A %g %G %u %V %w} -gmt true; # 1987-W53-1 -} {Mon Monday 87 1987 1 53 1} -test clock-3.317 {ISO week-based calendar 1987-W53-5} { - clock format 567993600 -format {%a %A %g %G %u %V %w} -gmt true; # 1987-W53-5 -} {Fri Friday 87 1987 5 53 5} -test clock-3.318 {ISO week-based calendar 1987-W53-7} { - clock format 568166400 -format {%a %A %g %G %u %V %w} -gmt true; # 1987-W53-7 -} {Sun Sunday 87 1987 7 53 0} -test clock-3.319 {ISO week-based calendar 1988-W01-1} { - clock format 568252800 -format {%a %A %g %G %u %V %w} -gmt true; # 1988-W01-1 -} {Mon Monday 88 1988 1 01 1} -test clock-3.320 {ISO week-based calendar 1988-W01-7} { - clock format 568771200 -format {%a %A %g %G %u %V %w} -gmt true; # 1988-W01-7 -} {Sun Sunday 88 1988 7 01 0} -test clock-3.321 {ISO week-based calendar 1988-W02-1} { - clock format 568857600 -format {%a %A %g %G %u %V %w} -gmt true; # 1988-W02-1 -} {Mon Monday 88 1988 1 02 1} -test clock-3.322 {ISO week-based calendar 1988-W52-1} { - clock format 599097600 -format {%a %A %g %G %u %V %w} -gmt true; # 1988-W52-1 -} {Mon Monday 88 1988 1 52 1} -test clock-3.323 {ISO week-based calendar 1988-W52-6} { - clock format 599529600 -format {%a %A %g %G %u %V %w} -gmt true; # 1988-W52-6 -} {Sat Saturday 88 1988 6 52 6} -test clock-3.324 {ISO week-based calendar 1988-W52-7} { - clock format 599616000 -format {%a %A %g %G %u %V %w} -gmt true; # 1988-W52-7 -} {Sun Sunday 88 1988 7 52 0} -test clock-3.325 {ISO week-based calendar 1989-W01-1} { - clock format 599702400 -format {%a %A %g %G %u %V %w} -gmt true; # 1989-W01-1 -} {Mon Monday 89 1989 1 01 1} -test clock-3.326 {ISO week-based calendar 1989-W01-7} { - clock format 600220800 -format {%a %A %g %G %u %V %w} -gmt true; # 1989-W01-7 -} {Sun Sunday 89 1989 7 01 0} -test clock-3.327 {ISO week-based calendar 1989-W02-1} { - clock format 600307200 -format {%a %A %g %G %u %V %w} -gmt true; # 1989-W02-1 -} {Mon Monday 89 1989 1 02 1} -test clock-3.328 {ISO week-based calendar 1991-W52-1} { - clock format 693446400 -format {%a %A %g %G %u %V %w} -gmt true; # 1991-W52-1 -} {Mon Monday 91 1991 1 52 1} -test clock-3.329 {ISO week-based calendar 1991-W52-7} { - clock format 693964800 -format {%a %A %g %G %u %V %w} -gmt true; # 1991-W52-7 -} {Sun Sunday 91 1991 7 52 0} -test clock-3.330 {ISO week-based calendar 1992-W01-1} { - clock format 694051200 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W01-1 -} {Mon Monday 92 1992 1 01 1} -test clock-3.331 {ISO week-based calendar 1992-W01-3} { - clock format 694224000 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W01-3 -} {Wed Wednesday 92 1992 3 01 3} -test clock-3.332 {ISO week-based calendar 1992-W01-7} { - clock format 694569600 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W01-7 -} {Sun Sunday 92 1992 7 01 0} -test clock-3.333 {ISO week-based calendar 1992-W02-1} { - clock format 694656000 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W02-1 -} {Mon Monday 92 1992 1 02 1} -test clock-3.334 {ISO week-based calendar 1992-W53-1} { - clock format 725500800 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W53-1 -} {Mon Monday 92 1992 1 53 1} -test clock-3.335 {ISO week-based calendar 1992-W53-5} { - clock format 725846400 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W53-5 -} {Fri Friday 92 1992 5 53 5} -test clock-3.336 {ISO week-based calendar 1992-W53-7} { - clock format 726019200 -format {%a %A %g %G %u %V %w} -gmt true; # 1992-W53-7 -} {Sun Sunday 92 1992 7 53 0} -test clock-3.337 {ISO week-based calendar 1993-W01-1} { - clock format 726105600 -format {%a %A %g %G %u %V %w} -gmt true; # 1993-W01-1 -} {Mon Monday 93 1993 1 01 1} -test clock-3.338 {ISO week-based calendar 1993-W01-7} { - clock format 726624000 -format {%a %A %g %G %u %V %w} -gmt true; # 1993-W01-7 -} {Sun Sunday 93 1993 7 01 0} -test clock-3.339 {ISO week-based calendar 1993-W02-1} { - clock format 726710400 -format {%a %A %g %G %u %V %w} -gmt true; # 1993-W02-1 -} {Mon Monday 93 1993 1 02 1} -test clock-3.340 {ISO week-based calendar 1995-W52-1} { - clock format 819849600 -format {%a %A %g %G %u %V %w} -gmt true; # 1995-W52-1 -} {Mon Monday 95 1995 1 52 1} -test clock-3.341 {ISO week-based calendar 1995-W52-7} { - clock format 820368000 -format {%a %A %g %G %u %V %w} -gmt true; # 1995-W52-7 -} {Sun Sunday 95 1995 7 52 0} -test clock-3.342 {ISO week-based calendar 1996-W01-1} { - clock format 820454400 -format {%a %A %g %G %u %V %w} -gmt true; # 1996-W01-1 -} {Mon Monday 96 1996 1 01 1} -test clock-3.343 {ISO week-based calendar 1996-W01-7} { - clock format 820972800 -format {%a %A %g %G %u %V %w} -gmt true; # 1996-W01-7 -} {Sun Sunday 96 1996 7 01 0} -test clock-3.344 {ISO week-based calendar 1996-W02-1} { - clock format 821059200 -format {%a %A %g %G %u %V %w} -gmt true; # 1996-W02-1 -} {Mon Monday 96 1996 1 02 1} -test clock-3.345 {ISO week-based calendar 1996-W52-1} { - clock format 851299200 -format {%a %A %g %G %u %V %w} -gmt true; # 1996-W52-1 -} {Mon Monday 96 1996 1 52 1} -test clock-3.346 {ISO week-based calendar 1996-W52-7} { - clock format 851817600 -format {%a %A %g %G %u %V %w} -gmt true; # 1996-W52-7 -} {Sun Sunday 96 1996 7 52 0} -test clock-3.347 {ISO week-based calendar 1997-W01-1} { - clock format 851904000 -format {%a %A %g %G %u %V %w} -gmt true; # 1997-W01-1 -} {Mon Monday 97 1997 1 01 1} -test clock-3.348 {ISO week-based calendar 1997-W01-3} { - clock format 852076800 -format {%a %A %g %G %u %V %w} -gmt true; # 1997-W01-3 -} {Wed Wednesday 97 1997 3 01 3} -test clock-3.349 {ISO week-based calendar 1997-W01-7} { - clock format 852422400 -format {%a %A %g %G %u %V %w} -gmt true; # 1997-W01-7 -} {Sun Sunday 97 1997 7 01 0} -test clock-3.350 {ISO week-based calendar 1997-W02-1} { - clock format 852508800 -format {%a %A %g %G %u %V %w} -gmt true; # 1997-W02-1 -} {Mon Monday 97 1997 1 02 1} -test clock-3.351 {ISO week-based calendar 1999-W52-1} { - clock format 946252800 -format {%a %A %g %G %u %V %w} -gmt true; # 1999-W52-1 -} {Mon Monday 99 1999 1 52 1} -test clock-3.352 {ISO week-based calendar 1999-W52-6} { - clock format 946684800 -format {%a %A %g %G %u %V %w} -gmt true; # 1999-W52-6 -} {Sat Saturday 99 1999 6 52 6} -test clock-3.353 {ISO week-based calendar 1999-W52-7} { - clock format 946771200 -format {%a %A %g %G %u %V %w} -gmt true; # 1999-W52-7 -} {Sun Sunday 99 1999 7 52 0} -test clock-3.354 {ISO week-based calendar 2000-W01-1} { - clock format 946857600 -format {%a %A %g %G %u %V %w} -gmt true; # 2000-W01-1 -} {Mon Monday 00 2000 1 01 1} -test clock-3.355 {ISO week-based calendar 2000-W01-7} { - clock format 947376000 -format {%a %A %g %G %u %V %w} -gmt true; # 2000-W01-7 -} {Sun Sunday 00 2000 7 01 0} -test clock-3.356 {ISO week-based calendar 2000-W02-1} { - clock format 947462400 -format {%a %A %g %G %u %V %w} -gmt true; # 2000-W02-1 -} {Mon Monday 00 2000 1 02 1} -test clock-3.357 {ISO week-based calendar 2000-W52-1} { - clock format 977702400 -format {%a %A %g %G %u %V %w} -gmt true; # 2000-W52-1 -} {Mon Monday 00 2000 1 52 1} -test clock-3.358 {ISO week-based calendar 2000-W52-7} { - clock format 978220800 -format {%a %A %g %G %u %V %w} -gmt true; # 2000-W52-7 -} {Sun Sunday 00 2000 7 52 0} -test clock-3.359 {ISO week-based calendar 2001-W01-1} { - clock format 978307200 -format {%a %A %g %G %u %V %w} -gmt true; # 2001-W01-1 -} {Mon Monday 01 2001 1 01 1} -test clock-3.360 {ISO week-based calendar 2001-W01-7} { - clock format 978825600 -format {%a %A %g %G %u %V %w} -gmt true; # 2001-W01-7 -} {Sun Sunday 01 2001 7 01 0} -test clock-3.361 {ISO week-based calendar 2001-W02-1} { - clock format 978912000 -format {%a %A %g %G %u %V %w} -gmt true; # 2001-W02-1 -} {Mon Monday 01 2001 1 02 1} -test clock-3.362 {ISO week-based calendar 2001-W52-1} { - clock format 1009152000 -format {%a %A %g %G %u %V %w} -gmt true; # 2001-W52-1 -} {Mon Monday 01 2001 1 52 1} -test clock-3.363 {ISO week-based calendar 2001-W52-7} { - clock format 1009670400 -format {%a %A %g %G %u %V %w} -gmt true; # 2001-W52-7 -} {Sun Sunday 01 2001 7 52 0} -test clock-3.364 {ISO week-based calendar 2002-W01-1} { - clock format 1009756800 -format {%a %A %g %G %u %V %w} -gmt true; # 2002-W01-1 -} {Mon Monday 02 2002 1 01 1} -test clock-3.365 {ISO week-based calendar 2002-W01-2} { - clock format 1009843200 -format {%a %A %g %G %u %V %w} -gmt true; # 2002-W01-2 -} {Tue Tuesday 02 2002 2 01 2} -test clock-3.366 {ISO week-based calendar 2002-W01-7} { - clock format 1010275200 -format {%a %A %g %G %u %V %w} -gmt true; # 2002-W01-7 -} {Sun Sunday 02 2002 7 01 0} -test clock-3.367 {ISO week-based calendar 2002-W02-1} { - clock format 1010361600 -format {%a %A %g %G %u %V %w} -gmt true; # 2002-W02-1 -} {Mon Monday 02 2002 1 02 1} -test clock-3.368 {ISO week-based calendar 2002-W52-1} { - clock format 1040601600 -format {%a %A %g %G %u %V %w} -gmt true; # 2002-W52-1 -} {Mon Monday 02 2002 1 52 1} -test clock-3.369 {ISO week-based calendar 2002-W52-7} { - clock format 1041120000 -format {%a %A %g %G %u %V %w} -gmt true; # 2002-W52-7 -} {Sun Sunday 02 2002 7 52 0} -test clock-3.370 {ISO week-based calendar 2003-W01-1} { - clock format 1041206400 -format {%a %A %g %G %u %V %w} -gmt true; # 2003-W01-1 -} {Mon Monday 03 2003 1 01 1} -test clock-3.371 {ISO week-based calendar 2003-W01-3} { - clock format 1041379200 -format {%a %A %g %G %u %V %w} -gmt true; # 2003-W01-3 -} {Wed Wednesday 03 2003 3 01 3} -test clock-3.372 {ISO week-based calendar 2003-W01-7} { - clock format 1041724800 -format {%a %A %g %G %u %V %w} -gmt true; # 2003-W01-7 -} {Sun Sunday 03 2003 7 01 0} -test clock-3.373 {ISO week-based calendar 2003-W02-1} { - clock format 1041811200 -format {%a %A %g %G %u %V %w} -gmt true; # 2003-W02-1 -} {Mon Monday 03 2003 1 02 1} -test clock-3.374 {ISO week-based calendar 2003-W52-1} { - clock format 1072051200 -format {%a %A %g %G %u %V %w} -gmt true; # 2003-W52-1 -} {Mon Monday 03 2003 1 52 1} -test clock-3.375 {ISO week-based calendar 2003-W52-7} { - clock format 1072569600 -format {%a %A %g %G %u %V %w} -gmt true; # 2003-W52-7 -} {Sun Sunday 03 2003 7 52 0} -test clock-3.376 {ISO week-based calendar 2004-W01-1} { - clock format 1072656000 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W01-1 -} {Mon Monday 04 2004 1 01 1} -test clock-3.377 {ISO week-based calendar 2004-W01-4} { - clock format 1072915200 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W01-4 -} {Thu Thursday 04 2004 4 01 4} -test clock-3.378 {ISO week-based calendar 2004-W01-7} { - clock format 1073174400 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W01-7 -} {Sun Sunday 04 2004 7 01 0} -test clock-3.379 {ISO week-based calendar 2004-W02-1} { - clock format 1073260800 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W02-1 -} {Mon Monday 04 2004 1 02 1} -test clock-3.380 {ISO week-based calendar 2004-W53-1} { - clock format 1104105600 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W53-1 -} {Mon Monday 04 2004 1 53 1} -test clock-3.381 {ISO week-based calendar 2004-W53-6} { - clock format 1104537600 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W53-6 -} {Sat Saturday 04 2004 6 53 6} -test clock-3.382 {ISO week-based calendar 2004-W53-7} { - clock format 1104624000 -format {%a %A %g %G %u %V %w} -gmt true; # 2004-W53-7 -} {Sun Sunday 04 2004 7 53 0} -test clock-3.383 {ISO week-based calendar 2005-W01-1} { - clock format 1104710400 -format {%a %A %g %G %u %V %w} -gmt true; # 2005-W01-1 -} {Mon Monday 05 2005 1 01 1} -test clock-3.384 {ISO week-based calendar 2005-W01-7} { - clock format 1105228800 -format {%a %A %g %G %u %V %w} -gmt true; # 2005-W01-7 -} {Sun Sunday 05 2005 7 01 0} -test clock-3.385 {ISO week-based calendar 2005-W02-1} { - clock format 1105315200 -format {%a %A %g %G %u %V %w} -gmt true; # 2005-W02-1 -} {Mon Monday 05 2005 1 02 1} -test clock-3.386 {ISO week-based calendar 2005-W52-1} { - clock format 1135555200 -format {%a %A %g %G %u %V %w} -gmt true; # 2005-W52-1 -} {Mon Monday 05 2005 1 52 1} -test clock-3.387 {ISO week-based calendar 2005-W52-6} { - clock format 1135987200 -format {%a %A %g %G %u %V %w} -gmt true; # 2005-W52-6 -} {Sat Saturday 05 2005 6 52 6} -test clock-3.388 {ISO week-based calendar 2005-W52-7} { - clock format 1136073600 -format {%a %A %g %G %u %V %w} -gmt true; # 2005-W52-7 -} {Sun Sunday 05 2005 7 52 0} -test clock-3.389 {ISO week-based calendar 2006-W01-1} { - clock format 1136160000 -format {%a %A %g %G %u %V %w} -gmt true; # 2006-W01-1 -} {Mon Monday 06 2006 1 01 1} -test clock-3.390 {ISO week-based calendar 2006-W01-7} { - clock format 1136678400 -format {%a %A %g %G %u %V %w} -gmt true; # 2006-W01-7 -} {Sun Sunday 06 2006 7 01 0} -test clock-3.391 {ISO week-based calendar 2006-W02-1} { - clock format 1136764800 -format {%a %A %g %G %u %V %w} -gmt true; # 2006-W02-1 -} {Mon Monday 06 2006 1 02 1} -test clock-3.392 {ISO week-based calendar 2006-W52-1} { - clock format 1167004800 -format {%a %A %g %G %u %V %w} -gmt true; # 2006-W52-1 -} {Mon Monday 06 2006 1 52 1} -test clock-3.393 {ISO week-based calendar 2006-W52-7} { - clock format 1167523200 -format {%a %A %g %G %u %V %w} -gmt true; # 2006-W52-7 -} {Sun Sunday 06 2006 7 52 0} -test clock-3.394 {ISO week-based calendar 2007-W01-1} { - clock format 1167609600 -format {%a %A %g %G %u %V %w} -gmt true; # 2007-W01-1 -} {Mon Monday 07 2007 1 01 1} -test clock-3.395 {ISO week-based calendar 2007-W01-7} { - clock format 1168128000 -format {%a %A %g %G %u %V %w} -gmt true; # 2007-W01-7 -} {Sun Sunday 07 2007 7 01 0} -test clock-3.396 {ISO week-based calendar 2007-W02-1} { - clock format 1168214400 -format {%a %A %g %G %u %V %w} -gmt true; # 2007-W02-1 -} {Mon Monday 07 2007 1 02 1} -test clock-3.397 {ISO week-based calendar 2007-W52-1} { - clock format 1198454400 -format {%a %A %g %G %u %V %w} -gmt true; # 2007-W52-1 -} {Mon Monday 07 2007 1 52 1} -test clock-3.398 {ISO week-based calendar 2007-W52-7} { - clock format 1198972800 -format {%a %A %g %G %u %V %w} -gmt true; # 2007-W52-7 -} {Sun Sunday 07 2007 7 52 0} -test clock-3.399 {ISO week-based calendar 2008-W01-1} { - clock format 1199059200 -format {%a %A %g %G %u %V %w} -gmt true; # 2008-W01-1 -} {Mon Monday 08 2008 1 01 1} -test clock-3.400 {ISO week-based calendar 2008-W01-2} { - clock format 1199145600 -format {%a %A %g %G %u %V %w} -gmt true; # 2008-W01-2 -} {Tue Tuesday 08 2008 2 01 2} -test clock-3.401 {ISO week-based calendar 2008-W01-7} { - clock format 1199577600 -format {%a %A %g %G %u %V %w} -gmt true; # 2008-W01-7 -} {Sun Sunday 08 2008 7 01 0} -test clock-3.402 {ISO week-based calendar 2008-W02-1} { - clock format 1199664000 -format {%a %A %g %G %u %V %w} -gmt true; # 2008-W02-1 -} {Mon Monday 08 2008 1 02 1} -test clock-3.403 {ISO week-based calendar 2008-W52-1} { - clock format 1229904000 -format {%a %A %g %G %u %V %w} -gmt true; # 2008-W52-1 -} {Mon Monday 08 2008 1 52 1} -test clock-3.404 {ISO week-based calendar 2008-W52-7} { - clock format 1230422400 -format {%a %A %g %G %u %V %w} -gmt true; # 2008-W52-7 -} {Sun Sunday 08 2008 7 52 0} -test clock-3.405 {ISO week-based calendar 2009-W01-1} { - clock format 1230508800 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W01-1 -} {Mon Monday 09 2009 1 01 1} -test clock-3.406 {ISO week-based calendar 2009-W01-4} { - clock format 1230768000 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W01-4 -} {Thu Thursday 09 2009 4 01 4} -test clock-3.407 {ISO week-based calendar 2009-W01-7} { - clock format 1231027200 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W01-7 -} {Sun Sunday 09 2009 7 01 0} -test clock-3.408 {ISO week-based calendar 2009-W02-1} { - clock format 1231113600 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W02-1 -} {Mon Monday 09 2009 1 02 1} -test clock-3.409 {ISO week-based calendar 2009-W53-1} { - clock format 1261958400 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W53-1 -} {Mon Monday 09 2009 1 53 1} -test clock-3.410 {ISO week-based calendar 2009-W53-5} { - clock format 1262304000 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W53-5 -} {Fri Friday 09 2009 5 53 5} -test clock-3.411 {ISO week-based calendar 2009-W53-7} { - clock format 1262476800 -format {%a %A %g %G %u %V %w} -gmt true; # 2009-W53-7 -} {Sun Sunday 09 2009 7 53 0} -test clock-3.412 {ISO week-based calendar 2010-W01-1} { - clock format 1262563200 -format {%a %A %g %G %u %V %w} -gmt true; # 2010-W01-1 -} {Mon Monday 10 2010 1 01 1} -test clock-3.413 {ISO week-based calendar 2010-W01-7} { - clock format 1263081600 -format {%a %A %g %G %u %V %w} -gmt true; # 2010-W01-7 -} {Sun Sunday 10 2010 7 01 0} -test clock-3.414 {ISO week-based calendar 2010-W02-1} { - clock format 1263168000 -format {%a %A %g %G %u %V %w} -gmt true; # 2010-W02-1 -} {Mon Monday 10 2010 1 02 1} -test clock-3.415 {ISO week-based calendar 2010-W52-1} { - clock format 1293408000 -format {%a %A %g %G %u %V %w} -gmt true; # 2010-W52-1 -} {Mon Monday 10 2010 1 52 1} -test clock-3.416 {ISO week-based calendar 2010-W52-6} { - clock format 1293840000 -format {%a %A %g %G %u %V %w} -gmt true; # 2010-W52-6 -} {Sat Saturday 10 2010 6 52 6} -test clock-3.417 {ISO week-based calendar 2010-W52-7} { - clock format 1293926400 -format {%a %A %g %G %u %V %w} -gmt true; # 2010-W52-7 -} {Sun Sunday 10 2010 7 52 0} -test clock-3.418 {ISO week-based calendar 2011-W01-1} { - clock format 1294012800 -format {%a %A %g %G %u %V %w} -gmt true; # 2011-W01-1 -} {Mon Monday 11 2011 1 01 1} -test clock-3.419 {ISO week-based calendar 2011-W01-7} { - clock format 1294531200 -format {%a %A %g %G %u %V %w} -gmt true; # 2011-W01-7 -} {Sun Sunday 11 2011 7 01 0} -test clock-3.420 {ISO week-based calendar 2011-W02-1} { - clock format 1294617600 -format {%a %A %g %G %u %V %w} -gmt true; # 2011-W02-1 -} {Mon Monday 11 2011 1 02 1} -test clock-3.421 {ISO week-based calendar 2011-W52-1} { - clock format 1324857600 -format {%a %A %g %G %u %V %w} -gmt true; # 2011-W52-1 -} {Mon Monday 11 2011 1 52 1} -test clock-3.422 {ISO week-based calendar 2011-W52-6} { - clock format 1325289600 -format {%a %A %g %G %u %V %w} -gmt true; # 2011-W52-6 -} {Sat Saturday 11 2011 6 52 6} -test clock-3.423 {ISO week-based calendar 2011-W52-7} { - clock format 1325376000 -format {%a %A %g %G %u %V %w} -gmt true; # 2011-W52-7 -} {Sun Sunday 11 2011 7 52 0} -test clock-3.424 {ISO week-based calendar 2012-W01-1} { - clock format 1325462400 -format {%a %A %g %G %u %V %w} -gmt true; # 2012-W01-1 -} {Mon Monday 12 2012 1 01 1} -test clock-3.425 {ISO week-based calendar 2012-W01-7} { - clock format 1325980800 -format {%a %A %g %G %u %V %w} -gmt true; # 2012-W01-7 -} {Sun Sunday 12 2012 7 01 0} -test clock-3.426 {ISO week-based calendar 2012-W02-1} { - clock format 1326067200 -format {%a %A %g %G %u %V %w} -gmt true; # 2012-W02-1 -} {Mon Monday 12 2012 1 02 1} -test clock-3.427 {ISO week-based calendar 2012-W52-1} { - clock format 1356307200 -format {%a %A %g %G %u %V %w} -gmt true; # 2012-W52-1 -} {Mon Monday 12 2012 1 52 1} -test clock-3.428 {ISO week-based calendar 2012-W52-7} { - clock format 1356825600 -format {%a %A %g %G %u %V %w} -gmt true; # 2012-W52-7 -} {Sun Sunday 12 2012 7 52 0} -test clock-3.429 {ISO week-based calendar 2013-W01-1} { - clock format 1356912000 -format {%a %A %g %G %u %V %w} -gmt true; # 2013-W01-1 -} {Mon Monday 13 2013 1 01 1} -test clock-3.430 {ISO week-based calendar 2013-W01-2} { - clock format 1356998400 -format {%a %A %g %G %u %V %w} -gmt true; # 2013-W01-2 -} {Tue Tuesday 13 2013 2 01 2} -test clock-3.431 {ISO week-based calendar 2013-W01-7} { - clock format 1357430400 -format {%a %A %g %G %u %V %w} -gmt true; # 2013-W01-7 -} {Sun Sunday 13 2013 7 01 0} -test clock-3.432 {ISO week-based calendar 2013-W02-1} { - clock format 1357516800 -format {%a %A %g %G %u %V %w} -gmt true; # 2013-W02-1 -} {Mon Monday 13 2013 1 02 1} -test clock-3.433 {ISO week-based calendar 2015-W53-1} { - clock format 1451260800 -format {%a %A %g %G %u %V %w} -gmt true; # 2015-W53-1 -} {Mon Monday 15 2015 1 53 1} -test clock-3.434 {ISO week-based calendar 2015-W53-5} { - clock format 1451606400 -format {%a %A %g %G %u %V %w} -gmt true; # 2015-W53-5 -} {Fri Friday 15 2015 5 53 5} -test clock-3.435 {ISO week-based calendar 2015-W53-7} { - clock format 1451779200 -format {%a %A %g %G %u %V %w} -gmt true; # 2015-W53-7 -} {Sun Sunday 15 2015 7 53 0} -test clock-3.436 {ISO week-based calendar 2016-W01-1} { - clock format 1451865600 -format {%a %A %g %G %u %V %w} -gmt true; # 2016-W01-1 -} {Mon Monday 16 2016 1 01 1} -test clock-3.437 {ISO week-based calendar 2016-W01-7} { - clock format 1452384000 -format {%a %A %g %G %u %V %w} -gmt true; # 2016-W01-7 -} {Sun Sunday 16 2016 7 01 0} -test clock-3.438 {ISO week-based calendar 2016-W02-1} { - clock format 1452470400 -format {%a %A %g %G %u %V %w} -gmt true; # 2016-W02-1 -} {Mon Monday 16 2016 1 02 1} -test clock-3.439 {ISO week-based calendar 2016-W52-1} { - clock format 1482710400 -format {%a %A %g %G %u %V %w} -gmt true; # 2016-W52-1 -} {Mon Monday 16 2016 1 52 1} -test clock-3.440 {ISO week-based calendar 2016-W52-6} { - clock format 1483142400 -format {%a %A %g %G %u %V %w} -gmt true; # 2016-W52-6 -} {Sat Saturday 16 2016 6 52 6} -test clock-3.441 {ISO week-based calendar 2016-W52-7} { - clock format 1483228800 -format {%a %A %g %G %u %V %w} -gmt true; # 2016-W52-7 -} {Sun Sunday 16 2016 7 52 0} -test clock-3.442 {ISO week-based calendar 2017-W01-1} { - clock format 1483315200 -format {%a %A %g %G %u %V %w} -gmt true; # 2017-W01-1 -} {Mon Monday 17 2017 1 01 1} -test clock-3.443 {ISO week-based calendar 2017-W01-7} { - clock format 1483833600 -format {%a %A %g %G %u %V %w} -gmt true; # 2017-W01-7 -} {Sun Sunday 17 2017 7 01 0} -test clock-3.444 {ISO week-based calendar 2017-W02-1} { - clock format 1483920000 -format {%a %A %g %G %u %V %w} -gmt true; # 2017-W02-1 -} {Mon Monday 17 2017 1 02 1} -test clock-3.445 {ISO week-based calendar 2019-W52-1} { - clock format 1577059200 -format {%a %A %g %G %u %V %w} -gmt true; # 2019-W52-1 -} {Mon Monday 19 2019 1 52 1} -test clock-3.446 {ISO week-based calendar 2019-W52-7} { - clock format 1577577600 -format {%a %A %g %G %u %V %w} -gmt true; # 2019-W52-7 -} {Sun Sunday 19 2019 7 52 0} -test clock-3.447 {ISO week-based calendar 2020-W01-1} { - clock format 1577664000 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W01-1 -} {Mon Monday 20 2020 1 01 1} -test clock-3.448 {ISO week-based calendar 2020-W01-3} { - clock format 1577836800 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W01-3 -} {Wed Wednesday 20 2020 3 01 3} -test clock-3.449 {ISO week-based calendar 2020-W01-7} { - clock format 1578182400 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W01-7 -} {Sun Sunday 20 2020 7 01 0} -test clock-3.450 {ISO week-based calendar 2020-W02-1} { - clock format 1578268800 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W02-1 -} {Mon Monday 20 2020 1 02 1} -test clock-3.451 {ISO week-based calendar 2020-W53-1} { - clock format 1609113600 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W53-1 -} {Mon Monday 20 2020 1 53 1} -test clock-3.452 {ISO week-based calendar 2020-W53-5} { - clock format 1609459200 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W53-5 -} {Fri Friday 20 2020 5 53 5} -test clock-3.453 {ISO week-based calendar 2020-W53-7} { - clock format 1609632000 -format {%a %A %g %G %u %V %w} -gmt true; # 2020-W53-7 -} {Sun Sunday 20 2020 7 53 0} -test clock-3.454 {ISO week-based calendar 2021-W01-1} { - clock format 1609718400 -format {%a %A %g %G %u %V %w} -gmt true; # 2021-W01-1 -} {Mon Monday 21 2021 1 01 1} -test clock-3.455 {ISO week-based calendar 2021-W01-7} { - clock format 1610236800 -format {%a %A %g %G %u %V %w} -gmt true; # 2021-W01-7 -} {Sun Sunday 21 2021 7 01 0} -test clock-3.456 {ISO week-based calendar 2021-W02-1} { - clock format 1610323200 -format {%a %A %g %G %u %V %w} -gmt true; # 2021-W02-1 -} {Mon Monday 21 2021 1 02 1} -test clock-3.457 {ISO week-based calendar 2023-W52-1} { - clock format 1703462400 -format {%a %A %g %G %u %V %w} -gmt true; # 2023-W52-1 -} {Mon Monday 23 2023 1 52 1} -test clock-3.458 {ISO week-based calendar 2023-W52-7} { - clock format 1703980800 -format {%a %A %g %G %u %V %w} -gmt true; # 2023-W52-7 -} {Sun Sunday 23 2023 7 52 0} -test clock-3.459 {ISO week-based calendar 2024-W01-1} { - clock format 1704067200 -format {%a %A %g %G %u %V %w} -gmt true; # 2024-W01-1 -} {Mon Monday 24 2024 1 01 1} -test clock-3.460 {ISO week-based calendar 2024-W01-7} { - clock format 1704585600 -format {%a %A %g %G %u %V %w} -gmt true; # 2024-W01-7 -} {Sun Sunday 24 2024 7 01 0} -test clock-3.461 {ISO week-based calendar 2024-W02-1} { - clock format 1704672000 -format {%a %A %g %G %u %V %w} -gmt true; # 2024-W02-1 -} {Mon Monday 24 2024 1 02 1} -test clock-3.462 {ISO week-based calendar 2024-W52-1} { - clock format 1734912000 -format {%a %A %g %G %u %V %w} -gmt true; # 2024-W52-1 -} {Mon Monday 24 2024 1 52 1} -test clock-3.463 {ISO week-based calendar 2024-W52-7} { - clock format 1735430400 -format {%a %A %g %G %u %V %w} -gmt true; # 2024-W52-7 -} {Sun Sunday 24 2024 7 52 0} -test clock-3.464 {ISO week-based calendar 2025-W01-1} { - clock format 1735516800 -format {%a %A %g %G %u %V %w} -gmt true; # 2025-W01-1 -} {Mon Monday 25 2025 1 01 1} -test clock-3.465 {ISO week-based calendar 2025-W01-3} { - clock format 1735689600 -format {%a %A %g %G %u %V %w} -gmt true; # 2025-W01-3 -} {Wed Wednesday 25 2025 3 01 3} -test clock-3.466 {ISO week-based calendar 2025-W01-7} { - clock format 1736035200 -format {%a %A %g %G %u %V %w} -gmt true; # 2025-W01-7 -} {Sun Sunday 25 2025 7 01 0} -test clock-3.467 {ISO week-based calendar 2025-W02-1} { - clock format 1736121600 -format {%a %A %g %G %u %V %w} -gmt true; # 2025-W02-1 -} {Mon Monday 25 2025 1 02 1} -test clock-3.468 {ISO week-based calendar 2036-W52-1} { - clock format 2113516800 -format {%a %A %g %G %u %V %w} -gmt true; # 2036-W52-1 -} {Mon Monday 36 2036 1 52 1} -test clock-3.469 {ISO week-based calendar 2036-W52-7} { - clock format 2114035200 -format {%a %A %g %G %u %V %w} -gmt true; # 2036-W52-7 -} {Sun Sunday 36 2036 7 52 0} -test clock-3.470 {ISO week-based calendar 2037-W01-1} { - clock format 2114121600 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W01-1 -} {Mon Monday 37 2037 1 01 1} -test clock-3.471 {ISO week-based calendar 2037-W01-4} { - clock format 2114380800 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W01-4 -} {Thu Thursday 37 2037 4 01 4} -test clock-3.472 {ISO week-based calendar 2037-W01-7} { - clock format 2114640000 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W01-7 -} {Sun Sunday 37 2037 7 01 0} -test clock-3.473 {ISO week-based calendar 2037-W02-1} { - clock format 2114726400 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W02-1 -} {Mon Monday 37 2037 1 02 1} -test clock-3.474 {ISO week-based calendar 2037-W53-1} { - clock format 2145571200 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W53-1 -} {Mon Monday 37 2037 1 53 1} -test clock-3.475 {ISO week-based calendar 2037-W53-5} { - clock format 2145916800 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W53-5 -} {Fri Friday 37 2037 5 53 5} -test clock-3.476 {ISO week-based calendar 2037-W53-7} { - clock format 2146089600 -format {%a %A %g %G %u %V %w} -gmt true; # 2037-W53-7 -} {Sun Sunday 37 2037 7 53 0} -test clock-3.477 {ISO week-based calendar 2038-W01-1} { - clock format 2146176000 -format {%a %A %g %G %u %V %w} -gmt true; # 2038-W01-1 -} {Mon Monday 38 2038 1 01 1} -test clock-3.478 {ISO week-based calendar 2038-W01-7} { - clock format 2146694400 -format {%a %A %g %G %u %V %w} -gmt true; # 2038-W01-7 -} {Sun Sunday 38 2038 7 01 0} -test clock-3.479 {ISO week-based calendar 2038-W02-1} { - clock format 2146780800 -format {%a %A %g %G %u %V %w} -gmt true; # 2038-W02-1 -} {Mon Monday 38 2038 1 02 1} -test clock-3.480 {ISO week-based calendar 2038-W52-1} { - clock format 2177020800 -format {%a %A %g %G %u %V %w} -gmt true; # 2038-W52-1 -} {Mon Monday 38 2038 1 52 1} -test clock-3.481 {ISO week-based calendar 2038-W52-6} { - clock format 2177452800 -format {%a %A %g %G %u %V %w} -gmt true; # 2038-W52-6 -} {Sat Saturday 38 2038 6 52 6} -test clock-3.482 {ISO week-based calendar 2038-W52-7} { - clock format 2177539200 -format {%a %A %g %G %u %V %w} -gmt true; # 2038-W52-7 -} {Sun Sunday 38 2038 7 52 0} -test clock-3.483 {ISO week-based calendar 2039-W01-1} { - clock format 2177625600 -format {%a %A %g %G %u %V %w} -gmt true; # 2039-W01-1 -} {Mon Monday 39 2039 1 01 1} -test clock-3.484 {ISO week-based calendar 2039-W01-7} { - clock format 2178144000 -format {%a %A %g %G %u %V %w} -gmt true; # 2039-W01-7 -} {Sun Sunday 39 2039 7 01 0} -test clock-3.485 {ISO week-based calendar 2039-W02-1} { - clock format 2178230400 -format {%a %A %g %G %u %V %w} -gmt true; # 2039-W02-1 -} {Mon Monday 39 2039 1 02 1} -test clock-3.486 {ISO week-based calendar 2039-W52-1} { - clock format 2208470400 -format {%a %A %g %G %u %V %w} -gmt true; # 2039-W52-1 -} {Mon Monday 39 2039 1 52 1} -test clock-3.487 {ISO week-based calendar 2039-W52-6} { - clock format 2208902400 -format {%a %A %g %G %u %V %w} -gmt true; # 2039-W52-6 -} {Sat Saturday 39 2039 6 52 6} -test clock-3.488 {ISO week-based calendar 2039-W52-7} { - clock format 2208988800 -format {%a %A %g %G %u %V %w} -gmt true; # 2039-W52-7 -} {Sun Sunday 39 2039 7 52 0} -test clock-3.489 {ISO week-based calendar 2040-W01-1} { - clock format 2209075200 -format {%a %A %g %G %u %V %w} -gmt true; # 2040-W01-1 -} {Mon Monday 40 2040 1 01 1} -test clock-3.490 {ISO week-based calendar 2040-W01-7} { - clock format 2209593600 -format {%a %A %g %G %u %V %w} -gmt true; # 2040-W01-7 -} {Sun Sunday 40 2040 7 01 0} -test clock-3.491 {ISO week-based calendar 2040-W02-1} { - clock format 2209680000 -format {%a %A %g %G %u %V %w} -gmt true; # 2040-W02-1 -} {Mon Monday 40 2040 1 02 1} -test clock-3.492 {ISO week-based calendar 2040-W52-1} { - clock format 2239920000 -format {%a %A %g %G %u %V %w} -gmt true; # 2040-W52-1 -} {Mon Monday 40 2040 1 52 1} -test clock-3.493 {ISO week-based calendar 2040-W52-7} { - clock format 2240438400 -format {%a %A %g %G %u %V %w} -gmt true; # 2040-W52-7 -} {Sun Sunday 40 2040 7 52 0} -test clock-3.494 {ISO week-based calendar 2041-W01-1} { - clock format 2240524800 -format {%a %A %g %G %u %V %w} -gmt true; # 2041-W01-1 -} {Mon Monday 41 2041 1 01 1} -test clock-3.495 {ISO week-based calendar 2041-W01-2} { - clock format 2240611200 -format {%a %A %g %G %u %V %w} -gmt true; # 2041-W01-2 -} {Tue Tuesday 41 2041 2 01 2} -test clock-3.496 {ISO week-based calendar 2041-W01-7} { - clock format 2241043200 -format {%a %A %g %G %u %V %w} -gmt true; # 2041-W01-7 -} {Sun Sunday 41 2041 7 01 0} -test clock-3.497 {ISO week-based calendar 2041-W02-1} { - clock format 2241129600 -format {%a %A %g %G %u %V %w} -gmt true; # 2041-W02-1 -} {Mon Monday 41 2041 1 02 1} -test clock-3.498 {ISO week-based calendar 2041-W52-1} { - clock format 2271369600 -format {%a %A %g %G %u %V %w} -gmt true; # 2041-W52-1 -} {Mon Monday 41 2041 1 52 1} -test clock-3.499 {ISO week-based calendar 2041-W52-7} { - clock format 2271888000 -format {%a %A %g %G %u %V %w} -gmt true; # 2041-W52-7 -} {Sun Sunday 41 2041 7 52 0} -test clock-3.500 {ISO week-based calendar 2042-W01-1} { - clock format 2271974400 -format {%a %A %g %G %u %V %w} -gmt true; # 2042-W01-1 -} {Mon Monday 42 2042 1 01 1} -test clock-3.501 {ISO week-based calendar 2042-W01-3} { - clock format 2272147200 -format {%a %A %g %G %u %V %w} -gmt true; # 2042-W01-3 -} {Wed Wednesday 42 2042 3 01 3} -test clock-3.502 {ISO week-based calendar 2042-W01-7} { - clock format 2272492800 -format {%a %A %g %G %u %V %w} -gmt true; # 2042-W01-7 -} {Sun Sunday 42 2042 7 01 0} -test clock-3.503 {ISO week-based calendar 2042-W02-1} { - clock format 2272579200 -format {%a %A %g %G %u %V %w} -gmt true; # 2042-W02-1 -} {Mon Monday 42 2042 1 02 1} -test clock-3.504 {ISO week-based calendar 2042-W52-1} { - clock format 2302819200 -format {%a %A %g %G %u %V %w} -gmt true; # 2042-W52-1 -} {Mon Monday 42 2042 1 52 1} -test clock-3.505 {ISO week-based calendar 2042-W52-7} { - clock format 2303337600 -format {%a %A %g %G %u %V %w} -gmt true; # 2042-W52-7 -} {Sun Sunday 42 2042 7 52 0} -test clock-3.506 {ISO week-based calendar 2043-W01-1} { - clock format 2303424000 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W01-1 -} {Mon Monday 43 2043 1 01 1} -test clock-3.507 {ISO week-based calendar 2043-W01-4} { - clock format 2303683200 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W01-4 -} {Thu Thursday 43 2043 4 01 4} -test clock-3.508 {ISO week-based calendar 2043-W01-7} { - clock format 2303942400 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W01-7 -} {Sun Sunday 43 2043 7 01 0} -test clock-3.509 {ISO week-based calendar 2043-W02-1} { - clock format 2304028800 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W02-1 -} {Mon Monday 43 2043 1 02 1} -test clock-3.510 {ISO week-based calendar 2043-W53-1} { - clock format 2334873600 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W53-1 -} {Mon Monday 43 2043 1 53 1} -test clock-3.511 {ISO week-based calendar 2043-W53-5} { - clock format 2335219200 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W53-5 -} {Fri Friday 43 2043 5 53 5} -test clock-3.512 {ISO week-based calendar 2043-W53-7} { - clock format 2335392000 -format {%a %A %g %G %u %V %w} -gmt true; # 2043-W53-7 -} {Sun Sunday 43 2043 7 53 0} -test clock-3.513 {ISO week-based calendar 2044-W01-1} { - clock format 2335478400 -format {%a %A %g %G %u %V %w} -gmt true; # 2044-W01-1 -} {Mon Monday 44 2044 1 01 1} -test clock-3.514 {ISO week-based calendar 2044-W01-7} { - clock format 2335996800 -format {%a %A %g %G %u %V %w} -gmt true; # 2044-W01-7 -} {Sun Sunday 44 2044 7 01 0} -test clock-3.515 {ISO week-based calendar 2044-W02-1} { - clock format 2336083200 -format {%a %A %g %G %u %V %w} -gmt true; # 2044-W02-1 -} {Mon Monday 44 2044 1 02 1} -test clock-3.516 {ISO week-based calendar 2044-W52-1} { - clock format 2366323200 -format {%a %A %g %G %u %V %w} -gmt true; # 2044-W52-1 -} {Mon Monday 44 2044 1 52 1} -test clock-3.517 {ISO week-based calendar 2044-W52-6} { - clock format 2366755200 -format {%a %A %g %G %u %V %w} -gmt true; # 2044-W52-6 -} {Sat Saturday 44 2044 6 52 6} -test clock-3.518 {ISO week-based calendar 2044-W52-7} { - clock format 2366841600 -format {%a %A %g %G %u %V %w} -gmt true; # 2044-W52-7 -} {Sun Sunday 44 2044 7 52 0} -test clock-3.519 {ISO week-based calendar 2045-W01-1} { - clock format 2366928000 -format {%a %A %g %G %u %V %w} -gmt true; # 2045-W01-1 -} {Mon Monday 45 2045 1 01 1} -test clock-3.520 {ISO week-based calendar 2045-W01-7} { - clock format 2367446400 -format {%a %A %g %G %u %V %w} -gmt true; # 2045-W01-7 -} {Sun Sunday 45 2045 7 01 0} -test clock-3.521 {ISO week-based calendar 2045-W02-1} { - clock format 2367532800 -format {%a %A %g %G %u %V %w} -gmt true; # 2045-W02-1 -} {Mon Monday 45 2045 1 02 1} -test clock-3.522 {ISO week-based calendar 2045-W52-1} { - clock format 2397772800 -format {%a %A %g %G %u %V %w} -gmt true; # 2045-W52-1 -} {Mon Monday 45 2045 1 52 1} -test clock-3.523 {ISO week-based calendar 2045-W52-7} { - clock format 2398291200 -format {%a %A %g %G %u %V %w} -gmt true; # 2045-W52-7 -} {Sun Sunday 45 2045 7 52 0} -test clock-3.524 {ISO week-based calendar 2046-W01-1} { - clock format 2398377600 -format {%a %A %g %G %u %V %w} -gmt true; # 2046-W01-1 -} {Mon Monday 46 2046 1 01 1} -test clock-3.525 {ISO week-based calendar 2046-W01-7} { - clock format 2398896000 -format {%a %A %g %G %u %V %w} -gmt true; # 2046-W01-7 -} {Sun Sunday 46 2046 7 01 0} -test clock-3.526 {ISO week-based calendar 2046-W02-1} { - clock format 2398982400 -format {%a %A %g %G %u %V %w} -gmt true; # 2046-W02-1 -} {Mon Monday 46 2046 1 02 1} -test clock-3.527 {ISO week-based calendar 2046-W52-1} { - clock format 2429222400 -format {%a %A %g %G %u %V %w} -gmt true; # 2046-W52-1 -} {Mon Monday 46 2046 1 52 1} -test clock-3.528 {ISO week-based calendar 2046-W52-7} { - clock format 2429740800 -format {%a %A %g %G %u %V %w} -gmt true; # 2046-W52-7 -} {Sun Sunday 46 2046 7 52 0} -test clock-3.529 {ISO week-based calendar 2047-W01-1} { - clock format 2429827200 -format {%a %A %g %G %u %V %w} -gmt true; # 2047-W01-1 -} {Mon Monday 47 2047 1 01 1} -test clock-3.530 {ISO week-based calendar 2047-W01-2} { - clock format 2429913600 -format {%a %A %g %G %u %V %w} -gmt true; # 2047-W01-2 -} {Tue Tuesday 47 2047 2 01 2} -test clock-3.531 {ISO week-based calendar 2047-W01-7} { - clock format 2430345600 -format {%a %A %g %G %u %V %w} -gmt true; # 2047-W01-7 -} {Sun Sunday 47 2047 7 01 0} -test clock-3.532 {ISO week-based calendar 2047-W02-1} { - clock format 2430432000 -format {%a %A %g %G %u %V %w} -gmt true; # 2047-W02-1 -} {Mon Monday 47 2047 1 02 1} -test clock-3.533 {ISO week-based calendar 2047-W52-1} { - clock format 2460672000 -format {%a %A %g %G %u %V %w} -gmt true; # 2047-W52-1 -} {Mon Monday 47 2047 1 52 1} -test clock-3.534 {ISO week-based calendar 2047-W52-7} { - clock format 2461190400 -format {%a %A %g %G %u %V %w} -gmt true; # 2047-W52-7 -} {Sun Sunday 47 2047 7 52 0} -test clock-3.535 {ISO week-based calendar 2048-W01-1} { - clock format 2461276800 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W01-1 -} {Mon Monday 48 2048 1 01 1} -test clock-3.536 {ISO week-based calendar 2048-W01-3} { - clock format 2461449600 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W01-3 -} {Wed Wednesday 48 2048 3 01 3} -test clock-3.537 {ISO week-based calendar 2048-W01-7} { - clock format 2461795200 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W01-7 -} {Sun Sunday 48 2048 7 01 0} -test clock-3.538 {ISO week-based calendar 2048-W02-1} { - clock format 2461881600 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W02-1 -} {Mon Monday 48 2048 1 02 1} -test clock-3.539 {ISO week-based calendar 2048-W53-1} { - clock format 2492726400 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W53-1 -} {Mon Monday 48 2048 1 53 1} -test clock-3.540 {ISO week-based calendar 2048-W53-5} { - clock format 2493072000 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W53-5 -} {Fri Friday 48 2048 5 53 5} -test clock-3.541 {ISO week-based calendar 2048-W53-7} { - clock format 2493244800 -format {%a %A %g %G %u %V %w} -gmt true; # 2048-W53-7 -} {Sun Sunday 48 2048 7 53 0} -test clock-3.542 {ISO week-based calendar 2049-W01-1} { - clock format 2493331200 -format {%a %A %g %G %u %V %w} -gmt true; # 2049-W01-1 -} {Mon Monday 49 2049 1 01 1} -test clock-3.543 {ISO week-based calendar 2049-W01-7} { - clock format 2493849600 -format {%a %A %g %G %u %V %w} -gmt true; # 2049-W01-7 -} {Sun Sunday 49 2049 7 01 0} -test clock-3.544 {ISO week-based calendar 2049-W02-1} { - clock format 2493936000 -format {%a %A %g %G %u %V %w} -gmt true; # 2049-W02-1 -} {Mon Monday 49 2049 1 02 1} -test clock-3.545 {ISO week-based calendar 2051-W52-1} { - clock format 2587075200 -format {%a %A %g %G %u %V %w} -gmt true; # 2051-W52-1 -} {Mon Monday 51 2051 1 52 1} -test clock-3.546 {ISO week-based calendar 2051-W52-7} { - clock format 2587593600 -format {%a %A %g %G %u %V %w} -gmt true; # 2051-W52-7 -} {Sun Sunday 51 2051 7 52 0} -test clock-3.547 {ISO week-based calendar 2052-W01-1} { - clock format 2587680000 -format {%a %A %g %G %u %V %w} -gmt true; # 2052-W01-1 -} {Mon Monday 52 2052 1 01 1} -test clock-3.548 {ISO week-based calendar 2052-W01-7} { - clock format 2588198400 -format {%a %A %g %G %u %V %w} -gmt true; # 2052-W01-7 -} {Sun Sunday 52 2052 7 01 0} -test clock-3.549 {ISO week-based calendar 2052-W02-1} { - clock format 2588284800 -format {%a %A %g %G %u %V %w} -gmt true; # 2052-W02-1 -} {Mon Monday 52 2052 1 02 1} -test clock-3.550 {ISO week-based calendar 2052-W52-1} { - clock format 2618524800 -format {%a %A %g %G %u %V %w} -gmt true; # 2052-W52-1 -} {Mon Monday 52 2052 1 52 1} -test clock-3.551 {ISO week-based calendar 2052-W52-7} { - clock format 2619043200 -format {%a %A %g %G %u %V %w} -gmt true; # 2052-W52-7 -} {Sun Sunday 52 2052 7 52 0} -test clock-3.552 {ISO week-based calendar 2053-W01-1} { - clock format 2619129600 -format {%a %A %g %G %u %V %w} -gmt true; # 2053-W01-1 -} {Mon Monday 53 2053 1 01 1} -test clock-3.553 {ISO week-based calendar 2053-W01-3} { - clock format 2619302400 -format {%a %A %g %G %u %V %w} -gmt true; # 2053-W01-3 -} {Wed Wednesday 53 2053 3 01 3} -test clock-3.554 {ISO week-based calendar 2053-W01-7} { - clock format 2619648000 -format {%a %A %g %G %u %V %w} -gmt true; # 2053-W01-7 -} {Sun Sunday 53 2053 7 01 0} -test clock-3.555 {ISO week-based calendar 2053-W02-1} { - clock format 2619734400 -format {%a %A %g %G %u %V %w} -gmt true; # 2053-W02-1 -} {Mon Monday 53 2053 1 02 1} -test clock-3.556 {ISO week-based calendar 2055-W52-1} { - clock format 2713478400 -format {%a %A %g %G %u %V %w} -gmt true; # 2055-W52-1 -} {Mon Monday 55 2055 1 52 1} -test clock-3.557 {ISO week-based calendar 2055-W52-6} { - clock format 2713910400 -format {%a %A %g %G %u %V %w} -gmt true; # 2055-W52-6 -} {Sat Saturday 55 2055 6 52 6} -test clock-3.558 {ISO week-based calendar 2055-W52-7} { - clock format 2713996800 -format {%a %A %g %G %u %V %w} -gmt true; # 2055-W52-7 -} {Sun Sunday 55 2055 7 52 0} -test clock-3.559 {ISO week-based calendar 2056-W01-1} { - clock format 2714083200 -format {%a %A %g %G %u %V %w} -gmt true; # 2056-W01-1 -} {Mon Monday 56 2056 1 01 1} -test clock-3.560 {ISO week-based calendar 2056-W01-7} { - clock format 2714601600 -format {%a %A %g %G %u %V %w} -gmt true; # 2056-W01-7 -} {Sun Sunday 56 2056 7 01 0} -test clock-3.561 {ISO week-based calendar 2056-W02-1} { - clock format 2714688000 -format {%a %A %g %G %u %V %w} -gmt true; # 2056-W02-1 -} {Mon Monday 56 2056 1 02 1} -test clock-3.562 {ISO week-based calendar 2056-W52-1} { - clock format 2744928000 -format {%a %A %g %G %u %V %w} -gmt true; # 2056-W52-1 -} {Mon Monday 56 2056 1 52 1} -test clock-3.563 {ISO week-based calendar 2056-W52-7} { - clock format 2745446400 -format {%a %A %g %G %u %V %w} -gmt true; # 2056-W52-7 -} {Sun Sunday 56 2056 7 52 0} -test clock-3.564 {ISO week-based calendar 2057-W01-1} { - clock format 2745532800 -format {%a %A %g %G %u %V %w} -gmt true; # 2057-W01-1 -} {Mon Monday 57 2057 1 01 1} -test clock-3.565 {ISO week-based calendar 2057-W01-7} { - clock format 2746051200 -format {%a %A %g %G %u %V %w} -gmt true; # 2057-W01-7 -} {Sun Sunday 57 2057 7 01 0} -test clock-3.566 {ISO week-based calendar 2057-W02-1} { - clock format 2746137600 -format {%a %A %g %G %u %V %w} -gmt true; # 2057-W02-1 -} {Mon Monday 57 2057 1 02 1} -test clock-3.567 {ISO week-based calendar 2059-W52-1} { - clock format 2839276800 -format {%a %A %g %G %u %V %w} -gmt true; # 2059-W52-1 -} {Mon Monday 59 2059 1 52 1} -test clock-3.568 {ISO week-based calendar 2059-W52-7} { - clock format 2839795200 -format {%a %A %g %G %u %V %w} -gmt true; # 2059-W52-7 -} {Sun Sunday 59 2059 7 52 0} -test clock-3.569 {ISO week-based calendar 2060-W01-1} { - clock format 2839881600 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W01-1 -} {Mon Monday 60 2060 1 01 1} -test clock-3.570 {ISO week-based calendar 2060-W01-4} { - clock format 2840140800 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W01-4 -} {Thu Thursday 60 2060 4 01 4} -test clock-3.571 {ISO week-based calendar 2060-W01-7} { - clock format 2840400000 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W01-7 -} {Sun Sunday 60 2060 7 01 0} -test clock-3.572 {ISO week-based calendar 2060-W02-1} { - clock format 2840486400 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W02-1 -} {Mon Monday 60 2060 1 02 1} -test clock-3.573 {ISO week-based calendar 2060-W53-1} { - clock format 2871331200 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W53-1 -} {Mon Monday 60 2060 1 53 1} -test clock-3.574 {ISO week-based calendar 2060-W53-6} { - clock format 2871763200 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W53-6 -} {Sat Saturday 60 2060 6 53 6} -test clock-3.575 {ISO week-based calendar 2060-W53-7} { - clock format 2871849600 -format {%a %A %g %G %u %V %w} -gmt true; # 2060-W53-7 -} {Sun Sunday 60 2060 7 53 0} -test clock-3.576 {ISO week-based calendar 2061-W01-1} { - clock format 2871936000 -format {%a %A %g %G %u %V %w} -gmt true; # 2061-W01-1 -} {Mon Monday 61 2061 1 01 1} -test clock-3.577 {ISO week-based calendar 2061-W01-7} { - clock format 2872454400 -format {%a %A %g %G %u %V %w} -gmt true; # 2061-W01-7 -} {Sun Sunday 61 2061 7 01 0} -test clock-3.578 {ISO week-based calendar 2061-W02-1} { - clock format 2872540800 -format {%a %A %g %G %u %V %w} -gmt true; # 2061-W02-1 -} {Mon Monday 61 2061 1 02 1} -test clock-3.579 {ISO week-based calendar 2063-W52-1} { - clock format 2965680000 -format {%a %A %g %G %u %V %w} -gmt true; # 2063-W52-1 -} {Mon Monday 63 2063 1 52 1} -test clock-3.580 {ISO week-based calendar 2063-W52-7} { - clock format 2966198400 -format {%a %A %g %G %u %V %w} -gmt true; # 2063-W52-7 -} {Sun Sunday 63 2063 7 52 0} -test clock-3.581 {ISO week-based calendar 2064-W01-1} { - clock format 2966284800 -format {%a %A %g %G %u %V %w} -gmt true; # 2064-W01-1 -} {Mon Monday 64 2064 1 01 1} -test clock-3.582 {ISO week-based calendar 2064-W01-2} { - clock format 2966371200 -format {%a %A %g %G %u %V %w} -gmt true; # 2064-W01-2 -} {Tue Tuesday 64 2064 2 01 2} -test clock-3.583 {ISO week-based calendar 2064-W01-7} { - clock format 2966803200 -format {%a %A %g %G %u %V %w} -gmt true; # 2064-W01-7 -} {Sun Sunday 64 2064 7 01 0} -test clock-3.584 {ISO week-based calendar 2064-W02-1} { - clock format 2966889600 -format {%a %A %g %G %u %V %w} -gmt true; # 2064-W02-1 -} {Mon Monday 64 2064 1 02 1} -test clock-3.585 {ISO week-based calendar 2064-W52-1} { - clock format 2997129600 -format {%a %A %g %G %u %V %w} -gmt true; # 2064-W52-1 -} {Mon Monday 64 2064 1 52 1} -test clock-3.586 {ISO week-based calendar 2064-W52-7} { - clock format 2997648000 -format {%a %A %g %G %u %V %w} -gmt true; # 2064-W52-7 -} {Sun Sunday 64 2064 7 52 0} -test clock-3.587 {ISO week-based calendar 2065-W01-1} { - clock format 2997734400 -format {%a %A %g %G %u %V %w} -gmt true; # 2065-W01-1 -} {Mon Monday 65 2065 1 01 1} -test clock-3.588 {ISO week-based calendar 2065-W01-4} { - clock format 2997993600 -format {%a %A %g %G %u %V %w} -gmt true; # 2065-W01-4 -} {Thu Thursday 65 2065 4 01 4} -test clock-3.589 {ISO week-based calendar 2065-W01-7} { - clock format 2998252800 -format {%a %A %g %G %u %V %w} -gmt true; # 2065-W01-7 -} {Sun Sunday 65 2065 7 01 0} -test clock-3.590 {ISO week-based calendar 2065-W02-1} { - clock format 2998339200 -format {%a %A %g %G %u %V %w} -gmt true; # 2065-W02-1 -} {Mon Monday 65 2065 1 02 1} + clock format -3093206400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1871-W52-1 +} {Mon Monday 71 1871 1 52 52 1 52} +test clock-3.2 {ISO week-based calendar 1871-W52-6} { + clock format -3092774400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1871-W52-6 +} {Sat Saturday 71 1871 6 52 52 6 52} +test clock-3.3 {ISO week-based calendar 1871-W52-7} { + clock format -3092688000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1871-W52-7 +} {Sun Sunday 71 1871 7 53 52 0 52} +test clock-3.4 {ISO week-based calendar 1872-W01-1} { + clock format -3092601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W01-1 +} {Mon Monday 72 1872 1 00 01 1 01} +test clock-3.5 {ISO week-based calendar 1872-W01-6} { + clock format -3092169600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W01-6 +} {Sat Saturday 72 1872 6 00 01 6 01} +test clock-3.6 {ISO week-based calendar 1872-W01-7} { + clock format -3092083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W01-7 +} {Sun Sunday 72 1872 7 01 01 0 01} +test clock-3.7 {ISO week-based calendar 1872-W02-1} { + clock format -3091996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W02-1 +} {Mon Monday 72 1872 1 01 02 1 02} +test clock-3.8 {ISO week-based calendar 1872-W52-1} { + clock format -3061756800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W52-1 +} {Mon Monday 72 1872 1 51 52 1 52} +test clock-3.9 {ISO week-based calendar 1872-W52-6} { + clock format -3061324800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W52-6 +} {Sat Saturday 72 1872 6 51 52 6 52} +test clock-3.10 {ISO week-based calendar 1872-W52-7} { + clock format -3061238400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1872-W52-7 +} {Sun Sunday 72 1872 7 52 52 0 52} +test clock-3.11 {ISO week-based calendar 1873-W01-1} { + clock format -3061152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-1 +} {Mon Monday 73 1873 1 52 01 1 53} +test clock-3.12 {ISO week-based calendar 1873-W01-3} { + clock format -3060979200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-3 +} {Wed Wednesday 73 1873 3 00 01 3 00} +test clock-3.13 {ISO week-based calendar 1873-W01-6} { + clock format -3060720000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-6 +} {Sat Saturday 73 1873 6 00 01 6 00} +test clock-3.14 {ISO week-based calendar 1873-W01-7} { + clock format -3060633600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W01-7 +} {Sun Sunday 73 1873 7 01 01 0 00} +test clock-3.15 {ISO week-based calendar 1873-W02-1} { + clock format -3060547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1873-W02-1 +} {Mon Monday 73 1873 1 01 02 1 01} +test clock-3.16 {ISO week-based calendar 1875-W52-1} { + clock format -2966803200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1875-W52-1 +} {Mon Monday 75 1875 1 52 52 1 52} +test clock-3.17 {ISO week-based calendar 1875-W52-6} { + clock format -2966371200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1875-W52-6 +} {Sat Saturday 75 1875 6 00 52 6 00} +test clock-3.18 {ISO week-based calendar 1875-W52-7} { + clock format -2966284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1875-W52-7 +} {Sun Sunday 75 1875 7 01 52 0 00} +test clock-3.19 {ISO week-based calendar 1876-W01-1} { + clock format -2966198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W01-1 +} {Mon Monday 76 1876 1 01 01 1 01} +test clock-3.20 {ISO week-based calendar 1876-W01-6} { + clock format -2965766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W01-6 +} {Sat Saturday 76 1876 6 01 01 6 01} +test clock-3.21 {ISO week-based calendar 1876-W01-7} { + clock format -2965680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W01-7 +} {Sun Sunday 76 1876 7 02 01 0 01} +test clock-3.22 {ISO week-based calendar 1876-W02-1} { + clock format -2965593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W02-1 +} {Mon Monday 76 1876 1 02 02 1 02} +test clock-3.23 {ISO week-based calendar 1876-W52-1} { + clock format -2935353600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W52-1 +} {Mon Monday 76 1876 1 52 52 1 52} +test clock-3.24 {ISO week-based calendar 1876-W52-6} { + clock format -2934921600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W52-6 +} {Sat Saturday 76 1876 6 52 52 6 52} +test clock-3.25 {ISO week-based calendar 1876-W52-7} { + clock format -2934835200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1876-W52-7 +} {Sun Sunday 76 1876 7 53 52 0 52} +test clock-3.26 {ISO week-based calendar 1877-W01-1} { + clock format -2934748800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W01-1 +} {Mon Monday 77 1877 1 00 01 1 01} +test clock-3.27 {ISO week-based calendar 1877-W01-6} { + clock format -2934316800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W01-6 +} {Sat Saturday 77 1877 6 00 01 6 01} +test clock-3.28 {ISO week-based calendar 1877-W01-7} { + clock format -2934230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W01-7 +} {Sun Sunday 77 1877 7 01 01 0 01} +test clock-3.29 {ISO week-based calendar 1877-W02-1} { + clock format -2934144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1877-W02-1 +} {Mon Monday 77 1877 1 01 02 1 02} +test clock-3.30 {ISO week-based calendar 1879-W52-1} { + clock format -2841004800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1879-W52-1 +} {Mon Monday 79 1879 1 51 52 1 51} +test clock-3.31 {ISO week-based calendar 1879-W52-6} { + clock format -2840572800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1879-W52-6 +} {Sat Saturday 79 1879 6 51 52 6 51} +test clock-3.32 {ISO week-based calendar 1879-W52-7} { + clock format -2840486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1879-W52-7 +} {Sun Sunday 79 1879 7 52 52 0 51} +test clock-3.33 {ISO week-based calendar 1880-W01-1} { + clock format -2840400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-1 +} {Mon Monday 80 1880 1 52 01 1 52} +test clock-3.34 {ISO week-based calendar 1880-W01-4} { + clock format -2840140800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-4 +} {Thu Thursday 80 1880 4 00 01 4 00} +test clock-3.35 {ISO week-based calendar 1880-W01-6} { + clock format -2839968000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-6 +} {Sat Saturday 80 1880 6 00 01 6 00} +test clock-3.36 {ISO week-based calendar 1880-W01-7} { + clock format -2839881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W01-7 +} {Sun Sunday 80 1880 7 01 01 0 00} +test clock-3.37 {ISO week-based calendar 1880-W02-1} { + clock format -2839795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W02-1 +} {Mon Monday 80 1880 1 01 02 1 01} +test clock-3.38 {ISO week-based calendar 1880-W53-1} { + clock format -2808950400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W53-1 +} {Mon Monday 80 1880 1 52 53 1 52} +test clock-3.39 {ISO week-based calendar 1880-W53-6} { + clock format -2808518400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W53-6 +} {Sat Saturday 80 1880 6 00 53 6 00} +test clock-3.40 {ISO week-based calendar 1880-W53-7} { + clock format -2808432000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1880-W53-7 +} {Sun Sunday 80 1880 7 01 53 0 00} +test clock-3.41 {ISO week-based calendar 1881-W01-1} { + clock format -2808345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W01-1 +} {Mon Monday 81 1881 1 01 01 1 01} +test clock-3.42 {ISO week-based calendar 1881-W01-6} { + clock format -2807913600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W01-6 +} {Sat Saturday 81 1881 6 01 01 6 01} +test clock-3.43 {ISO week-based calendar 1881-W01-7} { + clock format -2807827200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W01-7 +} {Sun Sunday 81 1881 7 02 01 0 01} +test clock-3.44 {ISO week-based calendar 1881-W02-1} { + clock format -2807740800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1881-W02-1 +} {Mon Monday 81 1881 1 02 02 1 02} +test clock-3.45 {ISO week-based calendar 1883-W52-1} { + clock format -2714601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1883-W52-1 +} {Mon Monday 83 1883 1 51 52 1 52} +test clock-3.46 {ISO week-based calendar 1883-W52-6} { + clock format -2714169600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1883-W52-6 +} {Sat Saturday 83 1883 6 51 52 6 52} +test clock-3.47 {ISO week-based calendar 1883-W52-7} { + clock format -2714083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1883-W52-7 +} {Sun Sunday 83 1883 7 52 52 0 52} +test clock-3.48 {ISO week-based calendar 1884-W01-1} { + clock format -2713996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-1 +} {Mon Monday 84 1884 1 52 01 1 53} +test clock-3.49 {ISO week-based calendar 1884-W01-2} { + clock format -2713910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-2 +} {Tue Tuesday 84 1884 2 00 01 2 00} +test clock-3.50 {ISO week-based calendar 1884-W01-6} { + clock format -2713564800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-6 +} {Sat Saturday 84 1884 6 00 01 6 00} +test clock-3.51 {ISO week-based calendar 1884-W01-7} { + clock format -2713478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W01-7 +} {Sun Sunday 84 1884 7 01 01 0 00} +test clock-3.52 {ISO week-based calendar 1884-W02-1} { + clock format -2713392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W02-1 +} {Mon Monday 84 1884 1 01 02 1 01} +test clock-3.53 {ISO week-based calendar 1884-W52-1} { + clock format -2683152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W52-1 +} {Mon Monday 84 1884 1 51 52 1 51} +test clock-3.54 {ISO week-based calendar 1884-W52-6} { + clock format -2682720000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W52-6 +} {Sat Saturday 84 1884 6 51 52 6 51} +test clock-3.55 {ISO week-based calendar 1884-W52-7} { + clock format -2682633600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1884-W52-7 +} {Sun Sunday 84 1884 7 52 52 0 51} +test clock-3.56 {ISO week-based calendar 1885-W01-1} { + clock format -2682547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-1 +} {Mon Monday 85 1885 1 52 01 1 52} +test clock-3.57 {ISO week-based calendar 1885-W01-4} { + clock format -2682288000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-4 +} {Thu Thursday 85 1885 4 00 01 4 00} +test clock-3.58 {ISO week-based calendar 1885-W01-6} { + clock format -2682115200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-6 +} {Sat Saturday 85 1885 6 00 01 6 00} +test clock-3.59 {ISO week-based calendar 1885-W01-7} { + clock format -2682028800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W01-7 +} {Sun Sunday 85 1885 7 01 01 0 00} +test clock-3.60 {ISO week-based calendar 1885-W02-1} { + clock format -2681942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1885-W02-1 +} {Mon Monday 85 1885 1 01 02 1 01} +test clock-3.61 {ISO week-based calendar 1887-W52-1} { + clock format -2588198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1887-W52-1 +} {Mon Monday 87 1887 1 52 52 1 52} +test clock-3.62 {ISO week-based calendar 1887-W52-6} { + clock format -2587766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1887-W52-6 +} {Sat Saturday 87 1887 6 52 52 6 52} +test clock-3.63 {ISO week-based calendar 1887-W52-7} { + clock format -2587680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1887-W52-7 +} {Sun Sunday 87 1887 7 01 52 0 00} +test clock-3.64 {ISO week-based calendar 1888-W01-1} { + clock format -2587593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W01-1 +} {Mon Monday 88 1888 1 01 01 1 01} +test clock-3.65 {ISO week-based calendar 1888-W01-6} { + clock format -2587161600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W01-6 +} {Sat Saturday 88 1888 6 01 01 6 01} +test clock-3.66 {ISO week-based calendar 1888-W01-7} { + clock format -2587075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W01-7 +} {Sun Sunday 88 1888 7 02 01 0 01} +test clock-3.67 {ISO week-based calendar 1888-W02-1} { + clock format -2586988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W02-1 +} {Mon Monday 88 1888 1 02 02 1 02} +test clock-3.68 {ISO week-based calendar 1888-W52-1} { + clock format -2556748800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W52-1 +} {Mon Monday 88 1888 1 52 52 1 52} +test clock-3.69 {ISO week-based calendar 1888-W52-6} { + clock format -2556316800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W52-6 +} {Sat Saturday 88 1888 6 52 52 6 52} +test clock-3.70 {ISO week-based calendar 1888-W52-7} { + clock format -2556230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1888-W52-7 +} {Sun Sunday 88 1888 7 53 52 0 52} +test clock-3.71 {ISO week-based calendar 1889-W01-1} { + clock format -2556144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-1 +} {Mon Monday 89 1889 1 53 01 1 53} +test clock-3.72 {ISO week-based calendar 1889-W01-2} { + clock format -2556057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-2 +} {Tue Tuesday 89 1889 2 00 01 2 00} +test clock-3.73 {ISO week-based calendar 1889-W01-6} { + clock format -2555712000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-6 +} {Sat Saturday 89 1889 6 00 01 6 00} +test clock-3.74 {ISO week-based calendar 1889-W01-7} { + clock format -2555625600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W01-7 +} {Sun Sunday 89 1889 7 01 01 0 00} +test clock-3.75 {ISO week-based calendar 1889-W02-1} { + clock format -2555539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W02-1 +} {Mon Monday 89 1889 1 01 02 1 01} +test clock-3.76 {ISO week-based calendar 1889-W52-1} { + clock format -2525299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W52-1 +} {Mon Monday 89 1889 1 51 52 1 51} +test clock-3.77 {ISO week-based calendar 1889-W52-6} { + clock format -2524867200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W52-6 +} {Sat Saturday 89 1889 6 51 52 6 51} +test clock-3.78 {ISO week-based calendar 1889-W52-7} { + clock format -2524780800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1889-W52-7 +} {Sun Sunday 89 1889 7 52 52 0 51} +test clock-3.79 {ISO week-based calendar 1890-W01-1} { + clock format -2524694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-1 +} {Mon Monday 90 1890 1 52 01 1 52} +test clock-3.80 {ISO week-based calendar 1890-W01-3} { + clock format -2524521600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-3 +} {Wed Wednesday 90 1890 3 00 01 3 00} +test clock-3.81 {ISO week-based calendar 1890-W01-6} { + clock format -2524262400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-6 +} {Sat Saturday 90 1890 6 00 01 6 00} +test clock-3.82 {ISO week-based calendar 1890-W01-7} { + clock format -2524176000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W01-7 +} {Sun Sunday 90 1890 7 01 01 0 00} +test clock-3.83 {ISO week-based calendar 1890-W02-1} { + clock format -2524089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W02-1 +} {Mon Monday 90 1890 1 01 02 1 01} +test clock-3.84 {ISO week-based calendar 1890-W52-1} { + clock format -2493849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W52-1 +} {Mon Monday 90 1890 1 51 52 1 51} +test clock-3.85 {ISO week-based calendar 1890-W52-6} { + clock format -2493417600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W52-6 +} {Sat Saturday 90 1890 6 51 52 6 51} +test clock-3.86 {ISO week-based calendar 1890-W52-7} { + clock format -2493331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1890-W52-7 +} {Sun Sunday 90 1890 7 52 52 0 51} +test clock-3.87 {ISO week-based calendar 1891-W01-1} { + clock format -2493244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-1 +} {Mon Monday 91 1891 1 52 01 1 52} +test clock-3.88 {ISO week-based calendar 1891-W01-4} { + clock format -2492985600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-4 +} {Thu Thursday 91 1891 4 00 01 4 00} +test clock-3.89 {ISO week-based calendar 1891-W01-6} { + clock format -2492812800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-6 +} {Sat Saturday 91 1891 6 00 01 6 00} +test clock-3.90 {ISO week-based calendar 1891-W01-7} { + clock format -2492726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W01-7 +} {Sun Sunday 91 1891 7 01 01 0 00} +test clock-3.91 {ISO week-based calendar 1891-W02-1} { + clock format -2492640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W02-1 +} {Mon Monday 91 1891 1 01 02 1 01} +test clock-3.92 {ISO week-based calendar 1891-W53-1} { + clock format -2461795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-1 +} {Mon Monday 91 1891 1 52 53 1 52} +test clock-3.93 {ISO week-based calendar 1891-W53-5} { + clock format -2461449600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-5 +} {Fri Friday 91 1891 5 00 53 5 00} +test clock-3.94 {ISO week-based calendar 1891-W53-6} { + clock format -2461363200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-6 +} {Sat Saturday 91 1891 6 00 53 6 00} +test clock-3.95 {ISO week-based calendar 1891-W53-7} { + clock format -2461276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1891-W53-7 +} {Sun Sunday 91 1891 7 01 53 0 00} +test clock-3.96 {ISO week-based calendar 1892-W01-1} { + clock format -2461190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W01-1 +} {Mon Monday 92 1892 1 01 01 1 01} +test clock-3.97 {ISO week-based calendar 1892-W01-6} { + clock format -2460758400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W01-6 +} {Sat Saturday 92 1892 6 01 01 6 01} +test clock-3.98 {ISO week-based calendar 1892-W01-7} { + clock format -2460672000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W01-7 +} {Sun Sunday 92 1892 7 02 01 0 01} +test clock-3.99 {ISO week-based calendar 1892-W02-1} { + clock format -2460585600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W02-1 +} {Mon Monday 92 1892 1 02 02 1 02} +test clock-3.100 {ISO week-based calendar 1892-W52-1} { + clock format -2430345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W52-1 +} {Mon Monday 92 1892 1 52 52 1 52} +test clock-3.101 {ISO week-based calendar 1892-W52-6} { + clock format -2429913600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W52-6 +} {Sat Saturday 92 1892 6 52 52 6 52} +test clock-3.102 {ISO week-based calendar 1892-W52-7} { + clock format -2429827200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1892-W52-7 +} {Sun Sunday 92 1892 7 01 52 0 00} +test clock-3.103 {ISO week-based calendar 1893-W01-1} { + clock format -2429740800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W01-1 +} {Mon Monday 93 1893 1 01 01 1 01} +test clock-3.104 {ISO week-based calendar 1893-W01-6} { + clock format -2429308800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W01-6 +} {Sat Saturday 93 1893 6 01 01 6 01} +test clock-3.105 {ISO week-based calendar 1893-W01-7} { + clock format -2429222400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W01-7 +} {Sun Sunday 93 1893 7 02 01 0 01} +test clock-3.106 {ISO week-based calendar 1893-W02-1} { + clock format -2429136000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W02-1 +} {Mon Monday 93 1893 1 02 02 1 02} +test clock-3.107 {ISO week-based calendar 1893-W52-1} { + clock format -2398896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W52-1 +} {Mon Monday 93 1893 1 52 52 1 52} +test clock-3.108 {ISO week-based calendar 1893-W52-6} { + clock format -2398464000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W52-6 +} {Sat Saturday 93 1893 6 52 52 6 52} +test clock-3.109 {ISO week-based calendar 1893-W52-7} { + clock format -2398377600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1893-W52-7 +} {Sun Sunday 93 1893 7 53 52 0 52} +test clock-3.110 {ISO week-based calendar 1894-W01-1} { + clock format -2398291200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W01-1 +} {Mon Monday 94 1894 1 00 01 1 01} +test clock-3.111 {ISO week-based calendar 1894-W01-6} { + clock format -2397859200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W01-6 +} {Sat Saturday 94 1894 6 00 01 6 01} +test clock-3.112 {ISO week-based calendar 1894-W01-7} { + clock format -2397772800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W01-7 +} {Sun Sunday 94 1894 7 01 01 0 01} +test clock-3.113 {ISO week-based calendar 1894-W02-1} { + clock format -2397686400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W02-1 +} {Mon Monday 94 1894 1 01 02 1 02} +test clock-3.114 {ISO week-based calendar 1894-W52-1} { + clock format -2367446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W52-1 +} {Mon Monday 94 1894 1 51 52 1 52} +test clock-3.115 {ISO week-based calendar 1894-W52-6} { + clock format -2367014400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W52-6 +} {Sat Saturday 94 1894 6 51 52 6 52} +test clock-3.116 {ISO week-based calendar 1894-W52-7} { + clock format -2366928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1894-W52-7 +} {Sun Sunday 94 1894 7 52 52 0 52} +test clock-3.117 {ISO week-based calendar 1895-W01-1} { + clock format -2366841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-1 +} {Mon Monday 95 1895 1 52 01 1 53} +test clock-3.118 {ISO week-based calendar 1895-W01-2} { + clock format -2366755200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-2 +} {Tue Tuesday 95 1895 2 00 01 2 00} +test clock-3.119 {ISO week-based calendar 1895-W01-6} { + clock format -2366409600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-6 +} {Sat Saturday 95 1895 6 00 01 6 00} +test clock-3.120 {ISO week-based calendar 1895-W01-7} { + clock format -2366323200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W01-7 +} {Sun Sunday 95 1895 7 01 01 0 00} +test clock-3.121 {ISO week-based calendar 1895-W02-1} { + clock format -2366236800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W02-1 +} {Mon Monday 95 1895 1 01 02 1 01} +test clock-3.122 {ISO week-based calendar 1895-W52-1} { + clock format -2335996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W52-1 +} {Mon Monday 95 1895 1 51 52 1 51} +test clock-3.123 {ISO week-based calendar 1895-W52-6} { + clock format -2335564800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W52-6 +} {Sat Saturday 95 1895 6 51 52 6 51} +test clock-3.124 {ISO week-based calendar 1895-W52-7} { + clock format -2335478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1895-W52-7 +} {Sun Sunday 95 1895 7 52 52 0 51} +test clock-3.125 {ISO week-based calendar 1896-W01-1} { + clock format -2335392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-1 +} {Mon Monday 96 1896 1 52 01 1 52} +test clock-3.126 {ISO week-based calendar 1896-W01-3} { + clock format -2335219200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-3 +} {Wed Wednesday 96 1896 3 00 01 3 00} +test clock-3.127 {ISO week-based calendar 1896-W01-6} { + clock format -2334960000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-6 +} {Sat Saturday 96 1896 6 00 01 6 00} +test clock-3.128 {ISO week-based calendar 1896-W01-7} { + clock format -2334873600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W01-7 +} {Sun Sunday 96 1896 7 01 01 0 00} +test clock-3.129 {ISO week-based calendar 1896-W02-1} { + clock format -2334787200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W02-1 +} {Mon Monday 96 1896 1 01 02 1 01} +test clock-3.130 {ISO week-based calendar 1896-W53-1} { + clock format -2303942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-1 +} {Mon Monday 96 1896 1 52 53 1 52} +test clock-3.131 {ISO week-based calendar 1896-W53-5} { + clock format -2303596800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-5 +} {Fri Friday 96 1896 5 00 53 5 00} +test clock-3.132 {ISO week-based calendar 1896-W53-6} { + clock format -2303510400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-6 +} {Sat Saturday 96 1896 6 00 53 6 00} +test clock-3.133 {ISO week-based calendar 1896-W53-7} { + clock format -2303424000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1896-W53-7 +} {Sun Sunday 96 1896 7 01 53 0 00} +test clock-3.134 {ISO week-based calendar 1897-W01-1} { + clock format -2303337600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W01-1 +} {Mon Monday 97 1897 1 01 01 1 01} +test clock-3.135 {ISO week-based calendar 1897-W01-6} { + clock format -2302905600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W01-6 +} {Sat Saturday 97 1897 6 01 01 6 01} +test clock-3.136 {ISO week-based calendar 1897-W01-7} { + clock format -2302819200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W01-7 +} {Sun Sunday 97 1897 7 02 01 0 01} +test clock-3.137 {ISO week-based calendar 1897-W02-1} { + clock format -2302732800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W02-1 +} {Mon Monday 97 1897 1 02 02 1 02} +test clock-3.138 {ISO week-based calendar 1897-W52-1} { + clock format -2272492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W52-1 +} {Mon Monday 97 1897 1 52 52 1 52} +test clock-3.139 {ISO week-based calendar 1897-W52-6} { + clock format -2272060800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W52-6 +} {Sat Saturday 97 1897 6 00 52 6 00} +test clock-3.140 {ISO week-based calendar 1897-W52-7} { + clock format -2271974400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1897-W52-7 +} {Sun Sunday 97 1897 7 01 52 0 00} +test clock-3.141 {ISO week-based calendar 1898-W01-1} { + clock format -2271888000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W01-1 +} {Mon Monday 98 1898 1 01 01 1 01} +test clock-3.142 {ISO week-based calendar 1898-W01-6} { + clock format -2271456000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W01-6 +} {Sat Saturday 98 1898 6 01 01 6 01} +test clock-3.143 {ISO week-based calendar 1898-W01-7} { + clock format -2271369600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W01-7 +} {Sun Sunday 98 1898 7 02 01 0 01} +test clock-3.144 {ISO week-based calendar 1898-W02-1} { + clock format -2271283200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W02-1 +} {Mon Monday 98 1898 1 02 02 1 02} +test clock-3.145 {ISO week-based calendar 1898-W52-1} { + clock format -2241043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W52-1 +} {Mon Monday 98 1898 1 52 52 1 52} +test clock-3.146 {ISO week-based calendar 1898-W52-6} { + clock format -2240611200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W52-6 +} {Sat Saturday 98 1898 6 52 52 6 52} +test clock-3.147 {ISO week-based calendar 1898-W52-7} { + clock format -2240524800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1898-W52-7 +} {Sun Sunday 98 1898 7 01 52 0 00} +test clock-3.148 {ISO week-based calendar 1899-W01-1} { + clock format -2240438400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W01-1 +} {Mon Monday 99 1899 1 01 01 1 01} +test clock-3.149 {ISO week-based calendar 1899-W01-6} { + clock format -2240006400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W01-6 +} {Sat Saturday 99 1899 6 01 01 6 01} +test clock-3.150 {ISO week-based calendar 1899-W01-7} { + clock format -2239920000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W01-7 +} {Sun Sunday 99 1899 7 02 01 0 01} +test clock-3.151 {ISO week-based calendar 1899-W02-1} { + clock format -2239833600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W02-1 +} {Mon Monday 99 1899 1 02 02 1 02} +test clock-3.152 {ISO week-based calendar 1899-W52-1} { + clock format -2209593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W52-1 +} {Mon Monday 99 1899 1 52 52 1 52} +test clock-3.153 {ISO week-based calendar 1899-W52-6} { + clock format -2209161600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W52-6 +} {Sat Saturday 99 1899 6 52 52 6 52} +test clock-3.154 {ISO week-based calendar 1899-W52-7} { + clock format -2209075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1899-W52-7 +} {Sun Sunday 99 1899 7 53 52 0 52} +test clock-3.155 {ISO week-based calendar 1900-W01-1} { + clock format -2208988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W01-1 +} {Mon Monday 00 1900 1 00 01 1 01} +test clock-3.156 {ISO week-based calendar 1900-W01-6} { + clock format -2208556800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W01-6 +} {Sat Saturday 00 1900 6 00 01 6 01} +test clock-3.157 {ISO week-based calendar 1900-W01-7} { + clock format -2208470400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W01-7 +} {Sun Sunday 00 1900 7 01 01 0 01} +test clock-3.158 {ISO week-based calendar 1900-W02-1} { + clock format -2208384000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1900-W02-1 +} {Mon Monday 00 1900 1 01 02 1 02} +test clock-3.159 {ISO week-based calendar 1943-W52-1} { + clock format -820972800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1943-W52-1 +} {Mon Monday 43 1943 1 52 52 1 52} +test clock-3.160 {ISO week-based calendar 1943-W52-6} { + clock format -820540800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1943-W52-6 +} {Sat Saturday 43 1943 6 00 52 6 00} +test clock-3.161 {ISO week-based calendar 1943-W52-7} { + clock format -820454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1943-W52-7 +} {Sun Sunday 43 1943 7 01 52 0 00} +test clock-3.162 {ISO week-based calendar 1944-W01-1} { + clock format -820368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W01-1 +} {Mon Monday 44 1944 1 01 01 1 01} +test clock-3.163 {ISO week-based calendar 1944-W01-6} { + clock format -819936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W01-6 +} {Sat Saturday 44 1944 6 01 01 6 01} +test clock-3.164 {ISO week-based calendar 1944-W01-7} { + clock format -819849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W01-7 +} {Sun Sunday 44 1944 7 02 01 0 01} +test clock-3.165 {ISO week-based calendar 1944-W02-1} { + clock format -819763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W02-1 +} {Mon Monday 44 1944 1 02 02 1 02} +test clock-3.166 {ISO week-based calendar 1944-W52-1} { + clock format -789523200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W52-1 +} {Mon Monday 44 1944 1 52 52 1 52} +test clock-3.167 {ISO week-based calendar 1944-W52-6} { + clock format -789091200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W52-6 +} {Sat Saturday 44 1944 6 52 52 6 52} +test clock-3.168 {ISO week-based calendar 1944-W52-7} { + clock format -789004800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1944-W52-7 +} {Sun Sunday 44 1944 7 53 52 0 52} +test clock-3.169 {ISO week-based calendar 1945-W01-1} { + clock format -788918400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W01-1 +} {Mon Monday 45 1945 1 00 01 1 01} +test clock-3.170 {ISO week-based calendar 1945-W01-6} { + clock format -788486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W01-6 +} {Sat Saturday 45 1945 6 00 01 6 01} +test clock-3.171 {ISO week-based calendar 1945-W01-7} { + clock format -788400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W01-7 +} {Sun Sunday 45 1945 7 01 01 0 01} +test clock-3.172 {ISO week-based calendar 1945-W02-1} { + clock format -788313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1945-W02-1 +} {Mon Monday 45 1945 1 01 02 1 02} +test clock-3.173 {ISO week-based calendar 1947-W52-1} { + clock format -695174400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1947-W52-1 +} {Mon Monday 47 1947 1 51 52 1 51} +test clock-3.174 {ISO week-based calendar 1947-W52-6} { + clock format -694742400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1947-W52-6 +} {Sat Saturday 47 1947 6 51 52 6 51} +test clock-3.175 {ISO week-based calendar 1947-W52-7} { + clock format -694656000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1947-W52-7 +} {Sun Sunday 47 1947 7 52 52 0 51} +test clock-3.176 {ISO week-based calendar 1948-W01-1} { + clock format -694569600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-1 +} {Mon Monday 48 1948 1 52 01 1 52} +test clock-3.177 {ISO week-based calendar 1948-W01-4} { + clock format -694310400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-4 +} {Thu Thursday 48 1948 4 00 01 4 00} +test clock-3.178 {ISO week-based calendar 1948-W01-6} { + clock format -694137600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-6 +} {Sat Saturday 48 1948 6 00 01 6 00} +test clock-3.179 {ISO week-based calendar 1948-W01-7} { + clock format -694051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W01-7 +} {Sun Sunday 48 1948 7 01 01 0 00} +test clock-3.180 {ISO week-based calendar 1948-W02-1} { + clock format -693964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W02-1 +} {Mon Monday 48 1948 1 01 02 1 01} +test clock-3.181 {ISO week-based calendar 1948-W53-1} { + clock format -663120000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W53-1 +} {Mon Monday 48 1948 1 52 53 1 52} +test clock-3.182 {ISO week-based calendar 1948-W53-6} { + clock format -662688000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W53-6 +} {Sat Saturday 48 1948 6 00 53 6 00} +test clock-3.183 {ISO week-based calendar 1948-W53-7} { + clock format -662601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1948-W53-7 +} {Sun Sunday 48 1948 7 01 53 0 00} +test clock-3.184 {ISO week-based calendar 1949-W01-1} { + clock format -662515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W01-1 +} {Mon Monday 49 1949 1 01 01 1 01} +test clock-3.185 {ISO week-based calendar 1949-W01-6} { + clock format -662083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W01-6 +} {Sat Saturday 49 1949 6 01 01 6 01} +test clock-3.186 {ISO week-based calendar 1949-W01-7} { + clock format -661996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W01-7 +} {Sun Sunday 49 1949 7 02 01 0 01} +test clock-3.187 {ISO week-based calendar 1949-W02-1} { + clock format -661910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1949-W02-1 +} {Mon Monday 49 1949 1 02 02 1 02} +test clock-3.188 {ISO week-based calendar 1951-W52-1} { + clock format -568771200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1951-W52-1 +} {Mon Monday 51 1951 1 51 52 1 52} +test clock-3.189 {ISO week-based calendar 1951-W52-6} { + clock format -568339200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1951-W52-6 +} {Sat Saturday 51 1951 6 51 52 6 52} +test clock-3.190 {ISO week-based calendar 1951-W52-7} { + clock format -568252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1951-W52-7 +} {Sun Sunday 51 1951 7 52 52 0 52} +test clock-3.191 {ISO week-based calendar 1952-W01-1} { + clock format -568166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-1 +} {Mon Monday 52 1952 1 52 01 1 53} +test clock-3.192 {ISO week-based calendar 1952-W01-2} { + clock format -568080000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-2 +} {Tue Tuesday 52 1952 2 00 01 2 00} +test clock-3.193 {ISO week-based calendar 1952-W01-6} { + clock format -567734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-6 +} {Sat Saturday 52 1952 6 00 01 6 00} +test clock-3.194 {ISO week-based calendar 1952-W01-7} { + clock format -567648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W01-7 +} {Sun Sunday 52 1952 7 01 01 0 00} +test clock-3.195 {ISO week-based calendar 1952-W02-1} { + clock format -567561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W02-1 +} {Mon Monday 52 1952 1 01 02 1 01} +test clock-3.196 {ISO week-based calendar 1952-W52-1} { + clock format -537321600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W52-1 +} {Mon Monday 52 1952 1 51 52 1 51} +test clock-3.197 {ISO week-based calendar 1952-W52-6} { + clock format -536889600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W52-6 +} {Sat Saturday 52 1952 6 51 52 6 51} +test clock-3.198 {ISO week-based calendar 1952-W52-7} { + clock format -536803200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1952-W52-7 +} {Sun Sunday 52 1952 7 52 52 0 51} +test clock-3.199 {ISO week-based calendar 1953-W01-1} { + clock format -536716800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-1 +} {Mon Monday 53 1953 1 52 01 1 52} +test clock-3.200 {ISO week-based calendar 1953-W01-4} { + clock format -536457600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-4 +} {Thu Thursday 53 1953 4 00 01 4 00} +test clock-3.201 {ISO week-based calendar 1953-W01-6} { + clock format -536284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-6 +} {Sat Saturday 53 1953 6 00 01 6 00} +test clock-3.202 {ISO week-based calendar 1953-W01-7} { + clock format -536198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W01-7 +} {Sun Sunday 53 1953 7 01 01 0 00} +test clock-3.203 {ISO week-based calendar 1953-W02-1} { + clock format -536112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1953-W02-1 +} {Mon Monday 53 1953 1 01 02 1 01} +test clock-3.204 {ISO week-based calendar 1955-W52-1} { + clock format -442368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1955-W52-1 +} {Mon Monday 55 1955 1 52 52 1 52} +test clock-3.205 {ISO week-based calendar 1955-W52-6} { + clock format -441936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1955-W52-6 +} {Sat Saturday 55 1955 6 52 52 6 52} +test clock-3.206 {ISO week-based calendar 1955-W52-7} { + clock format -441849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1955-W52-7 +} {Sun Sunday 55 1955 7 01 52 0 00} +test clock-3.207 {ISO week-based calendar 1956-W01-1} { + clock format -441763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W01-1 +} {Mon Monday 56 1956 1 01 01 1 01} +test clock-3.208 {ISO week-based calendar 1956-W01-6} { + clock format -441331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W01-6 +} {Sat Saturday 56 1956 6 01 01 6 01} +test clock-3.209 {ISO week-based calendar 1956-W01-7} { + clock format -441244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W01-7 +} {Sun Sunday 56 1956 7 02 01 0 01} +test clock-3.210 {ISO week-based calendar 1956-W02-1} { + clock format -441158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W02-1 +} {Mon Monday 56 1956 1 02 02 1 02} +test clock-3.211 {ISO week-based calendar 1956-W52-1} { + clock format -410918400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W52-1 +} {Mon Monday 56 1956 1 52 52 1 52} +test clock-3.212 {ISO week-based calendar 1956-W52-6} { + clock format -410486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W52-6 +} {Sat Saturday 56 1956 6 52 52 6 52} +test clock-3.213 {ISO week-based calendar 1956-W52-7} { + clock format -410400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1956-W52-7 +} {Sun Sunday 56 1956 7 53 52 0 52} +test clock-3.214 {ISO week-based calendar 1957-W01-1} { + clock format -410313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-1 +} {Mon Monday 57 1957 1 53 01 1 53} +test clock-3.215 {ISO week-based calendar 1957-W01-2} { + clock format -410227200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-2 +} {Tue Tuesday 57 1957 2 00 01 2 00} +test clock-3.216 {ISO week-based calendar 1957-W01-6} { + clock format -409881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-6 +} {Sat Saturday 57 1957 6 00 01 6 00} +test clock-3.217 {ISO week-based calendar 1957-W01-7} { + clock format -409795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W01-7 +} {Sun Sunday 57 1957 7 01 01 0 00} +test clock-3.218 {ISO week-based calendar 1957-W02-1} { + clock format -409708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1957-W02-1 +} {Mon Monday 57 1957 1 01 02 1 01} +test clock-3.219 {ISO week-based calendar 1958-W52-1} { + clock format -348019200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1958-W52-1 +} {Mon Monday 58 1958 1 51 52 1 51} +test clock-3.220 {ISO week-based calendar 1958-W52-6} { + clock format -347587200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1958-W52-6 +} {Sat Saturday 58 1958 6 51 52 6 51} +test clock-3.221 {ISO week-based calendar 1958-W52-7} { + clock format -347500800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1958-W52-7 +} {Sun Sunday 58 1958 7 52 52 0 51} +test clock-3.222 {ISO week-based calendar 1959-W01-1} { + clock format -347414400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-1 +} {Mon Monday 59 1959 1 52 01 1 52} +test clock-3.223 {ISO week-based calendar 1959-W01-4} { + clock format -347155200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-4 +} {Thu Thursday 59 1959 4 00 01 4 00} +test clock-3.224 {ISO week-based calendar 1959-W01-6} { + clock format -346982400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-6 +} {Sat Saturday 59 1959 6 00 01 6 00} +test clock-3.225 {ISO week-based calendar 1959-W01-7} { + clock format -346896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W01-7 +} {Sun Sunday 59 1959 7 01 01 0 00} +test clock-3.226 {ISO week-based calendar 1959-W02-1} { + clock format -346809600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W02-1 +} {Mon Monday 59 1959 1 01 02 1 01} +test clock-3.227 {ISO week-based calendar 1959-W53-1} { + clock format -315964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-1 +} {Mon Monday 59 1959 1 52 53 1 52} +test clock-3.228 {ISO week-based calendar 1959-W53-5} { + clock format -315619200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-5 +} {Fri Friday 59 1959 5 00 53 5 00} +test clock-3.229 {ISO week-based calendar 1959-W53-6} { + clock format -315532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-6 +} {Sat Saturday 59 1959 6 00 53 6 00} +test clock-3.230 {ISO week-based calendar 1959-W53-7} { + clock format -315446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1959-W53-7 +} {Sun Sunday 59 1959 7 01 53 0 00} +test clock-3.231 {ISO week-based calendar 1960-W01-1} { + clock format -315360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W01-1 +} {Mon Monday 60 1960 1 01 01 1 01} +test clock-3.232 {ISO week-based calendar 1960-W01-6} { + clock format -314928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W01-6 +} {Sat Saturday 60 1960 6 01 01 6 01} +test clock-3.233 {ISO week-based calendar 1960-W01-7} { + clock format -314841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W01-7 +} {Sun Sunday 60 1960 7 02 01 0 01} +test clock-3.234 {ISO week-based calendar 1960-W02-1} { + clock format -314755200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W02-1 +} {Mon Monday 60 1960 1 02 02 1 02} +test clock-3.235 {ISO week-based calendar 1960-W52-1} { + clock format -284515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W52-1 +} {Mon Monday 60 1960 1 52 52 1 52} +test clock-3.236 {ISO week-based calendar 1960-W52-6} { + clock format -284083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W52-6 +} {Sat Saturday 60 1960 6 52 52 6 52} +test clock-3.237 {ISO week-based calendar 1960-W52-7} { + clock format -283996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1960-W52-7 +} {Sun Sunday 60 1960 7 01 52 0 00} +test clock-3.238 {ISO week-based calendar 1961-W01-1} { + clock format -283910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W01-1 +} {Mon Monday 61 1961 1 01 01 1 01} +test clock-3.239 {ISO week-based calendar 1961-W01-6} { + clock format -283478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W01-6 +} {Sat Saturday 61 1961 6 01 01 6 01} +test clock-3.240 {ISO week-based calendar 1961-W01-7} { + clock format -283392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W01-7 +} {Sun Sunday 61 1961 7 02 01 0 01} +test clock-3.241 {ISO week-based calendar 1961-W02-1} { + clock format -283305600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W02-1 +} {Mon Monday 61 1961 1 02 02 1 02} +test clock-3.242 {ISO week-based calendar 1961-W52-1} { + clock format -253065600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W52-1 +} {Mon Monday 61 1961 1 52 52 1 52} +test clock-3.243 {ISO week-based calendar 1961-W52-6} { + clock format -252633600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W52-6 +} {Sat Saturday 61 1961 6 52 52 6 52} +test clock-3.244 {ISO week-based calendar 1961-W52-7} { + clock format -252547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1961-W52-7 +} {Sun Sunday 61 1961 7 53 52 0 52} +test clock-3.245 {ISO week-based calendar 1962-W01-1} { + clock format -252460800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W01-1 +} {Mon Monday 62 1962 1 00 01 1 01} +test clock-3.246 {ISO week-based calendar 1962-W01-6} { + clock format -252028800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W01-6 +} {Sat Saturday 62 1962 6 00 01 6 01} +test clock-3.247 {ISO week-based calendar 1962-W01-7} { + clock format -251942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W01-7 +} {Sun Sunday 62 1962 7 01 01 0 01} +test clock-3.248 {ISO week-based calendar 1962-W02-1} { + clock format -251856000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W02-1 +} {Mon Monday 62 1962 1 01 02 1 02} +test clock-3.249 {ISO week-based calendar 1962-W52-1} { + clock format -221616000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W52-1 +} {Mon Monday 62 1962 1 51 52 1 52} +test clock-3.250 {ISO week-based calendar 1962-W52-6} { + clock format -221184000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W52-6 +} {Sat Saturday 62 1962 6 51 52 6 52} +test clock-3.251 {ISO week-based calendar 1962-W52-7} { + clock format -221097600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1962-W52-7 +} {Sun Sunday 62 1962 7 52 52 0 52} +test clock-3.252 {ISO week-based calendar 1963-W01-1} { + clock format -221011200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-1 +} {Mon Monday 63 1963 1 52 01 1 53} +test clock-3.253 {ISO week-based calendar 1963-W01-2} { + clock format -220924800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-2 +} {Tue Tuesday 63 1963 2 00 01 2 00} +test clock-3.254 {ISO week-based calendar 1963-W01-6} { + clock format -220579200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-6 +} {Sat Saturday 63 1963 6 00 01 6 00} +test clock-3.255 {ISO week-based calendar 1963-W01-7} { + clock format -220492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W01-7 +} {Sun Sunday 63 1963 7 01 01 0 00} +test clock-3.256 {ISO week-based calendar 1963-W02-1} { + clock format -220406400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W02-1 +} {Mon Monday 63 1963 1 01 02 1 01} +test clock-3.257 {ISO week-based calendar 1963-W52-1} { + clock format -190166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W52-1 +} {Mon Monday 63 1963 1 51 52 1 51} +test clock-3.258 {ISO week-based calendar 1963-W52-6} { + clock format -189734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W52-6 +} {Sat Saturday 63 1963 6 51 52 6 51} +test clock-3.259 {ISO week-based calendar 1963-W52-7} { + clock format -189648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1963-W52-7 +} {Sun Sunday 63 1963 7 52 52 0 51} +test clock-3.260 {ISO week-based calendar 1964-W01-1} { + clock format -189561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-1 +} {Mon Monday 64 1964 1 52 01 1 52} +test clock-3.261 {ISO week-based calendar 1964-W01-3} { + clock format -189388800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-3 +} {Wed Wednesday 64 1964 3 00 01 3 00} +test clock-3.262 {ISO week-based calendar 1964-W01-6} { + clock format -189129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-6 +} {Sat Saturday 64 1964 6 00 01 6 00} +test clock-3.263 {ISO week-based calendar 1964-W01-7} { + clock format -189043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W01-7 +} {Sun Sunday 64 1964 7 01 01 0 00} +test clock-3.264 {ISO week-based calendar 1964-W02-1} { + clock format -188956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W02-1 +} {Mon Monday 64 1964 1 01 02 1 01} +test clock-3.265 {ISO week-based calendar 1964-W53-1} { + clock format -158112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-1 +} {Mon Monday 64 1964 1 52 53 1 52} +test clock-3.266 {ISO week-based calendar 1964-W53-5} { + clock format -157766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-5 +} {Fri Friday 64 1964 5 00 53 5 00} +test clock-3.267 {ISO week-based calendar 1964-W53-6} { + clock format -157680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-6 +} {Sat Saturday 64 1964 6 00 53 6 00} +test clock-3.268 {ISO week-based calendar 1964-W53-7} { + clock format -157593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1964-W53-7 +} {Sun Sunday 64 1964 7 01 53 0 00} +test clock-3.269 {ISO week-based calendar 1965-W01-1} { + clock format -157507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W01-1 +} {Mon Monday 65 1965 1 01 01 1 01} +test clock-3.270 {ISO week-based calendar 1965-W01-6} { + clock format -157075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W01-6 +} {Sat Saturday 65 1965 6 01 01 6 01} +test clock-3.271 {ISO week-based calendar 1965-W01-7} { + clock format -156988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W01-7 +} {Sun Sunday 65 1965 7 02 01 0 01} +test clock-3.272 {ISO week-based calendar 1965-W02-1} { + clock format -156902400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W02-1 +} {Mon Monday 65 1965 1 02 02 1 02} +test clock-3.273 {ISO week-based calendar 1965-W52-1} { + clock format -126662400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W52-1 +} {Mon Monday 65 1965 1 52 52 1 52} +test clock-3.274 {ISO week-based calendar 1965-W52-6} { + clock format -126230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W52-6 +} {Sat Saturday 65 1965 6 00 52 6 00} +test clock-3.275 {ISO week-based calendar 1965-W52-7} { + clock format -126144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1965-W52-7 +} {Sun Sunday 65 1965 7 01 52 0 00} +test clock-3.276 {ISO week-based calendar 1966-W01-1} { + clock format -126057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W01-1 +} {Mon Monday 66 1966 1 01 01 1 01} +test clock-3.277 {ISO week-based calendar 1966-W01-6} { + clock format -125625600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W01-6 +} {Sat Saturday 66 1966 6 01 01 6 01} +test clock-3.278 {ISO week-based calendar 1966-W01-7} { + clock format -125539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W01-7 +} {Sun Sunday 66 1966 7 02 01 0 01} +test clock-3.279 {ISO week-based calendar 1966-W02-1} { + clock format -125452800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W02-1 +} {Mon Monday 66 1966 1 02 02 1 02} +test clock-3.280 {ISO week-based calendar 1966-W52-1} { + clock format -95212800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W52-1 +} {Mon Monday 66 1966 1 52 52 1 52} +test clock-3.281 {ISO week-based calendar 1966-W52-6} { + clock format -94780800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W52-6 +} {Sat Saturday 66 1966 6 52 52 6 52} +test clock-3.282 {ISO week-based calendar 1966-W52-7} { + clock format -94694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1966-W52-7 +} {Sun Sunday 66 1966 7 01 52 0 00} +test clock-3.283 {ISO week-based calendar 1967-W01-1} { + clock format -94608000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W01-1 +} {Mon Monday 67 1967 1 01 01 1 01} +test clock-3.284 {ISO week-based calendar 1967-W01-6} { + clock format -94176000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W01-6 +} {Sat Saturday 67 1967 6 01 01 6 01} +test clock-3.285 {ISO week-based calendar 1967-W01-7} { + clock format -94089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W01-7 +} {Sun Sunday 67 1967 7 02 01 0 01} +test clock-3.286 {ISO week-based calendar 1967-W02-1} { + clock format -94003200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W02-1 +} {Mon Monday 67 1967 1 02 02 1 02} +test clock-3.287 {ISO week-based calendar 1967-W52-1} { + clock format -63763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W52-1 +} {Mon Monday 67 1967 1 52 52 1 52} +test clock-3.288 {ISO week-based calendar 1967-W52-6} { + clock format -63331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W52-6 +} {Sat Saturday 67 1967 6 52 52 6 52} +test clock-3.289 {ISO week-based calendar 1967-W52-7} { + clock format -63244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1967-W52-7 +} {Sun Sunday 67 1967 7 53 52 0 52} +test clock-3.290 {ISO week-based calendar 1968-W01-1} { + clock format -63158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W01-1 +} {Mon Monday 68 1968 1 00 01 1 01} +test clock-3.291 {ISO week-based calendar 1968-W01-6} { + clock format -62726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W01-6 +} {Sat Saturday 68 1968 6 00 01 6 01} +test clock-3.292 {ISO week-based calendar 1968-W01-7} { + clock format -62640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W01-7 +} {Sun Sunday 68 1968 7 01 01 0 01} +test clock-3.293 {ISO week-based calendar 1968-W02-1} { + clock format -62553600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W02-1 +} {Mon Monday 68 1968 1 01 02 1 02} +test clock-3.294 {ISO week-based calendar 1968-W52-1} { + clock format -32313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W52-1 +} {Mon Monday 68 1968 1 51 52 1 52} +test clock-3.295 {ISO week-based calendar 1968-W52-6} { + clock format -31881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W52-6 +} {Sat Saturday 68 1968 6 51 52 6 52} +test clock-3.296 {ISO week-based calendar 1968-W52-7} { + clock format -31795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1968-W52-7 +} {Sun Sunday 68 1968 7 52 52 0 52} +test clock-3.297 {ISO week-based calendar 1969-W01-1} { + clock format -31708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-1 +} {Mon Monday 69 1969 1 52 01 1 53} +test clock-3.298 {ISO week-based calendar 1969-W01-3} { + clock format -31536000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-3 +} {Wed Wednesday 69 1969 3 00 01 3 00} +test clock-3.299 {ISO week-based calendar 1969-W01-6} { + clock format -31276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-6 +} {Sat Saturday 69 1969 6 00 01 6 00} +test clock-3.300 {ISO week-based calendar 1969-W01-7} { + clock format -31190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W01-7 +} {Sun Sunday 69 1969 7 01 01 0 00} +test clock-3.301 {ISO week-based calendar 1969-W02-1} { + clock format -31104000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W02-1 +} {Mon Monday 69 1969 1 01 02 1 01} +test clock-3.302 {ISO week-based calendar 1969-W52-1} { + clock format -864000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W52-1 +} {Mon Monday 69 1969 1 51 52 1 51} +test clock-3.303 {ISO week-based calendar 1969-W52-6} { + clock format -432000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W52-6 +} {Sat Saturday 69 1969 6 51 52 6 51} +test clock-3.304 {ISO week-based calendar 1969-W52-7} { + clock format -345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1969-W52-7 +} {Sun Sunday 69 1969 7 52 52 0 51} +test clock-3.305 {ISO week-based calendar 1970-W01-1} { + clock format -259200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-1 +} {Mon Monday 70 1970 1 52 01 1 52} +test clock-3.306 {ISO week-based calendar 1970-W01-4} { + clock format 0 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-4 +} {Thu Thursday 70 1970 4 00 01 4 00} +test clock-3.307 {ISO week-based calendar 1970-W01-6} { + clock format 172800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-6 +} {Sat Saturday 70 1970 6 00 01 6 00} +test clock-3.308 {ISO week-based calendar 1970-W01-7} { + clock format 259200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W01-7 +} {Sun Sunday 70 1970 7 01 01 0 00} +test clock-3.309 {ISO week-based calendar 1970-W02-1} { + clock format 345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W02-1 +} {Mon Monday 70 1970 1 01 02 1 01} +test clock-3.310 {ISO week-based calendar 1970-W53-1} { + clock format 31190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-1 +} {Mon Monday 70 1970 1 52 53 1 52} +test clock-3.311 {ISO week-based calendar 1970-W53-5} { + clock format 31536000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-5 +} {Fri Friday 70 1970 5 00 53 5 00} +test clock-3.312 {ISO week-based calendar 1970-W53-6} { + clock format 31622400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-6 +} {Sat Saturday 70 1970 6 00 53 6 00} +test clock-3.313 {ISO week-based calendar 1970-W53-7} { + clock format 31708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1970-W53-7 +} {Sun Sunday 70 1970 7 01 53 0 00} +test clock-3.314 {ISO week-based calendar 1971-W01-1} { + clock format 31795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W01-1 +} {Mon Monday 71 1971 1 01 01 1 01} +test clock-3.315 {ISO week-based calendar 1971-W01-6} { + clock format 32227200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W01-6 +} {Sat Saturday 71 1971 6 01 01 6 01} +test clock-3.316 {ISO week-based calendar 1971-W01-7} { + clock format 32313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W01-7 +} {Sun Sunday 71 1971 7 02 01 0 01} +test clock-3.317 {ISO week-based calendar 1971-W02-1} { + clock format 32400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W02-1 +} {Mon Monday 71 1971 1 02 02 1 02} +test clock-3.318 {ISO week-based calendar 1971-W52-1} { + clock format 62640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W52-1 +} {Mon Monday 71 1971 1 52 52 1 52} +test clock-3.319 {ISO week-based calendar 1971-W52-6} { + clock format 63072000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W52-6 +} {Sat Saturday 71 1971 6 00 52 6 00} +test clock-3.320 {ISO week-based calendar 1971-W52-7} { + clock format 63158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1971-W52-7 +} {Sun Sunday 71 1971 7 01 52 0 00} +test clock-3.321 {ISO week-based calendar 1972-W01-1} { + clock format 63244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W01-1 +} {Mon Monday 72 1972 1 01 01 1 01} +test clock-3.322 {ISO week-based calendar 1972-W01-6} { + clock format 63676800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W01-6 +} {Sat Saturday 72 1972 6 01 01 6 01} +test clock-3.323 {ISO week-based calendar 1972-W01-7} { + clock format 63763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W01-7 +} {Sun Sunday 72 1972 7 02 01 0 01} +test clock-3.324 {ISO week-based calendar 1972-W02-1} { + clock format 63849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W02-1 +} {Mon Monday 72 1972 1 02 02 1 02} +test clock-3.325 {ISO week-based calendar 1972-W52-1} { + clock format 94089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W52-1 +} {Mon Monday 72 1972 1 52 52 1 52} +test clock-3.326 {ISO week-based calendar 1972-W52-6} { + clock format 94521600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W52-6 +} {Sat Saturday 72 1972 6 52 52 6 52} +test clock-3.327 {ISO week-based calendar 1972-W52-7} { + clock format 94608000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1972-W52-7 +} {Sun Sunday 72 1972 7 53 52 0 52} +test clock-3.328 {ISO week-based calendar 1973-W01-1} { + clock format 94694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W01-1 +} {Mon Monday 73 1973 1 00 01 1 01} +test clock-3.329 {ISO week-based calendar 1973-W01-6} { + clock format 95126400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W01-6 +} {Sat Saturday 73 1973 6 00 01 6 01} +test clock-3.330 {ISO week-based calendar 1973-W01-7} { + clock format 95212800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W01-7 +} {Sun Sunday 73 1973 7 01 01 0 01} +test clock-3.331 {ISO week-based calendar 1973-W02-1} { + clock format 95299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W02-1 +} {Mon Monday 73 1973 1 01 02 1 02} +test clock-3.332 {ISO week-based calendar 1973-W52-1} { + clock format 125539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W52-1 +} {Mon Monday 73 1973 1 51 52 1 52} +test clock-3.333 {ISO week-based calendar 1973-W52-6} { + clock format 125971200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W52-6 +} {Sat Saturday 73 1973 6 51 52 6 52} +test clock-3.334 {ISO week-based calendar 1973-W52-7} { + clock format 126057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1973-W52-7 +} {Sun Sunday 73 1973 7 52 52 0 52} +test clock-3.335 {ISO week-based calendar 1974-W01-1} { + clock format 126144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-1 +} {Mon Monday 74 1974 1 52 01 1 53} +test clock-3.336 {ISO week-based calendar 1974-W01-2} { + clock format 126230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-2 +} {Tue Tuesday 74 1974 2 00 01 2 00} +test clock-3.337 {ISO week-based calendar 1974-W01-6} { + clock format 126576000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-6 +} {Sat Saturday 74 1974 6 00 01 6 00} +test clock-3.338 {ISO week-based calendar 1974-W01-7} { + clock format 126662400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W01-7 +} {Sun Sunday 74 1974 7 01 01 0 00} +test clock-3.339 {ISO week-based calendar 1974-W02-1} { + clock format 126748800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W02-1 +} {Mon Monday 74 1974 1 01 02 1 01} +test clock-3.340 {ISO week-based calendar 1974-W52-1} { + clock format 156988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W52-1 +} {Mon Monday 74 1974 1 51 52 1 51} +test clock-3.341 {ISO week-based calendar 1974-W52-6} { + clock format 157420800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W52-6 +} {Sat Saturday 74 1974 6 51 52 6 51} +test clock-3.342 {ISO week-based calendar 1974-W52-7} { + clock format 157507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1974-W52-7 +} {Sun Sunday 74 1974 7 52 52 0 51} +test clock-3.343 {ISO week-based calendar 1975-W01-1} { + clock format 157593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-1 +} {Mon Monday 75 1975 1 52 01 1 52} +test clock-3.344 {ISO week-based calendar 1975-W01-3} { + clock format 157766400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-3 +} {Wed Wednesday 75 1975 3 00 01 3 00} +test clock-3.345 {ISO week-based calendar 1975-W01-6} { + clock format 158025600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-6 +} {Sat Saturday 75 1975 6 00 01 6 00} +test clock-3.346 {ISO week-based calendar 1975-W01-7} { + clock format 158112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W01-7 +} {Sun Sunday 75 1975 7 01 01 0 00} +test clock-3.347 {ISO week-based calendar 1975-W02-1} { + clock format 158198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W02-1 +} {Mon Monday 75 1975 1 01 02 1 01} +test clock-3.348 {ISO week-based calendar 1975-W52-1} { + clock format 188438400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W52-1 +} {Mon Monday 75 1975 1 51 52 1 51} +test clock-3.349 {ISO week-based calendar 1975-W52-6} { + clock format 188870400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W52-6 +} {Sat Saturday 75 1975 6 51 52 6 51} +test clock-3.350 {ISO week-based calendar 1975-W52-7} { + clock format 188956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1975-W52-7 +} {Sun Sunday 75 1975 7 52 52 0 51} +test clock-3.351 {ISO week-based calendar 1976-W01-1} { + clock format 189043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-1 +} {Mon Monday 76 1976 1 52 01 1 52} +test clock-3.352 {ISO week-based calendar 1976-W01-4} { + clock format 189302400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-4 +} {Thu Thursday 76 1976 4 00 01 4 00} +test clock-3.353 {ISO week-based calendar 1976-W01-6} { + clock format 189475200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-6 +} {Sat Saturday 76 1976 6 00 01 6 00} +test clock-3.354 {ISO week-based calendar 1976-W01-7} { + clock format 189561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W01-7 +} {Sun Sunday 76 1976 7 01 01 0 00} +test clock-3.355 {ISO week-based calendar 1976-W02-1} { + clock format 189648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W02-1 +} {Mon Monday 76 1976 1 01 02 1 01} +test clock-3.356 {ISO week-based calendar 1976-W53-1} { + clock format 220492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W53-1 +} {Mon Monday 76 1976 1 52 53 1 52} +test clock-3.357 {ISO week-based calendar 1976-W53-6} { + clock format 220924800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W53-6 +} {Sat Saturday 76 1976 6 00 53 6 00} +test clock-3.358 {ISO week-based calendar 1976-W53-7} { + clock format 221011200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1976-W53-7 +} {Sun Sunday 76 1976 7 01 53 0 00} +test clock-3.359 {ISO week-based calendar 1977-W01-1} { + clock format 221097600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W01-1 +} {Mon Monday 77 1977 1 01 01 1 01} +test clock-3.360 {ISO week-based calendar 1977-W01-6} { + clock format 221529600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W01-6 +} {Sat Saturday 77 1977 6 01 01 6 01} +test clock-3.361 {ISO week-based calendar 1977-W01-7} { + clock format 221616000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W01-7 +} {Sun Sunday 77 1977 7 02 01 0 01} +test clock-3.362 {ISO week-based calendar 1977-W02-1} { + clock format 221702400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W02-1 +} {Mon Monday 77 1977 1 02 02 1 02} +test clock-3.363 {ISO week-based calendar 1977-W52-1} { + clock format 251942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W52-1 +} {Mon Monday 77 1977 1 52 52 1 52} +test clock-3.364 {ISO week-based calendar 1977-W52-6} { + clock format 252374400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W52-6 +} {Sat Saturday 77 1977 6 52 52 6 52} +test clock-3.365 {ISO week-based calendar 1977-W52-7} { + clock format 252460800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1977-W52-7 +} {Sun Sunday 77 1977 7 01 52 0 00} +test clock-3.366 {ISO week-based calendar 1978-W01-1} { + clock format 252547200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W01-1 +} {Mon Monday 78 1978 1 01 01 1 01} +test clock-3.367 {ISO week-based calendar 1978-W01-6} { + clock format 252979200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W01-6 +} {Sat Saturday 78 1978 6 01 01 6 01} +test clock-3.368 {ISO week-based calendar 1978-W01-7} { + clock format 253065600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W01-7 +} {Sun Sunday 78 1978 7 02 01 0 01} +test clock-3.369 {ISO week-based calendar 1978-W02-1} { + clock format 253152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W02-1 +} {Mon Monday 78 1978 1 02 02 1 02} +test clock-3.370 {ISO week-based calendar 1978-W52-1} { + clock format 283392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W52-1 +} {Mon Monday 78 1978 1 52 52 1 52} +test clock-3.371 {ISO week-based calendar 1978-W52-6} { + clock format 283824000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W52-6 +} {Sat Saturday 78 1978 6 52 52 6 52} +test clock-3.372 {ISO week-based calendar 1978-W52-7} { + clock format 283910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1978-W52-7 +} {Sun Sunday 78 1978 7 53 52 0 52} +test clock-3.373 {ISO week-based calendar 1979-W01-1} { + clock format 283996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W01-1 +} {Mon Monday 79 1979 1 00 01 1 01} +test clock-3.374 {ISO week-based calendar 1979-W01-6} { + clock format 284428800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W01-6 +} {Sat Saturday 79 1979 6 00 01 6 01} +test clock-3.375 {ISO week-based calendar 1979-W01-7} { + clock format 284515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W01-7 +} {Sun Sunday 79 1979 7 01 01 0 01} +test clock-3.376 {ISO week-based calendar 1979-W02-1} { + clock format 284601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W02-1 +} {Mon Monday 79 1979 1 01 02 1 02} +test clock-3.377 {ISO week-based calendar 1979-W52-1} { + clock format 314841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W52-1 +} {Mon Monday 79 1979 1 51 52 1 52} +test clock-3.378 {ISO week-based calendar 1979-W52-6} { + clock format 315273600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W52-6 +} {Sat Saturday 79 1979 6 51 52 6 52} +test clock-3.379 {ISO week-based calendar 1979-W52-7} { + clock format 315360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1979-W52-7 +} {Sun Sunday 79 1979 7 52 52 0 52} +test clock-3.380 {ISO week-based calendar 1980-W01-1} { + clock format 315446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-1 +} {Mon Monday 80 1980 1 52 01 1 53} +test clock-3.381 {ISO week-based calendar 1980-W01-2} { + clock format 315532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-2 +} {Tue Tuesday 80 1980 2 00 01 2 00} +test clock-3.382 {ISO week-based calendar 1980-W01-6} { + clock format 315878400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-6 +} {Sat Saturday 80 1980 6 00 01 6 00} +test clock-3.383 {ISO week-based calendar 1980-W01-7} { + clock format 315964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W01-7 +} {Sun Sunday 80 1980 7 01 01 0 00} +test clock-3.384 {ISO week-based calendar 1980-W02-1} { + clock format 316051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W02-1 +} {Mon Monday 80 1980 1 01 02 1 01} +test clock-3.385 {ISO week-based calendar 1980-W52-1} { + clock format 346291200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W52-1 +} {Mon Monday 80 1980 1 51 52 1 51} +test clock-3.386 {ISO week-based calendar 1980-W52-6} { + clock format 346723200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W52-6 +} {Sat Saturday 80 1980 6 51 52 6 51} +test clock-3.387 {ISO week-based calendar 1980-W52-7} { + clock format 346809600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1980-W52-7 +} {Sun Sunday 80 1980 7 52 52 0 51} +test clock-3.388 {ISO week-based calendar 1981-W01-1} { + clock format 346896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-1 +} {Mon Monday 81 1981 1 52 01 1 52} +test clock-3.389 {ISO week-based calendar 1981-W01-4} { + clock format 347155200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-4 +} {Thu Thursday 81 1981 4 00 01 4 00} +test clock-3.390 {ISO week-based calendar 1981-W01-6} { + clock format 347328000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-6 +} {Sat Saturday 81 1981 6 00 01 6 00} +test clock-3.391 {ISO week-based calendar 1981-W01-7} { + clock format 347414400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W01-7 +} {Sun Sunday 81 1981 7 01 01 0 00} +test clock-3.392 {ISO week-based calendar 1981-W02-1} { + clock format 347500800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1981-W02-1 +} {Mon Monday 81 1981 1 01 02 1 01} +test clock-3.393 {ISO week-based calendar 1983-W52-1} { + clock format 441244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1983-W52-1 +} {Mon Monday 83 1983 1 52 52 1 52} +test clock-3.394 {ISO week-based calendar 1983-W52-6} { + clock format 441676800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1983-W52-6 +} {Sat Saturday 83 1983 6 52 52 6 52} +test clock-3.395 {ISO week-based calendar 1983-W52-7} { + clock format 441763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1983-W52-7 +} {Sun Sunday 83 1983 7 01 52 0 00} +test clock-3.396 {ISO week-based calendar 1984-W01-1} { + clock format 441849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W01-1 +} {Mon Monday 84 1984 1 01 01 1 01} +test clock-3.397 {ISO week-based calendar 1984-W01-6} { + clock format 442281600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W01-6 +} {Sat Saturday 84 1984 6 01 01 6 01} +test clock-3.398 {ISO week-based calendar 1984-W01-7} { + clock format 442368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W01-7 +} {Sun Sunday 84 1984 7 02 01 0 01} +test clock-3.399 {ISO week-based calendar 1984-W02-1} { + clock format 442454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W02-1 +} {Mon Monday 84 1984 1 02 02 1 02} +test clock-3.400 {ISO week-based calendar 1984-W52-1} { + clock format 472694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W52-1 +} {Mon Monday 84 1984 1 52 52 1 52} +test clock-3.401 {ISO week-based calendar 1984-W52-6} { + clock format 473126400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W52-6 +} {Sat Saturday 84 1984 6 52 52 6 52} +test clock-3.402 {ISO week-based calendar 1984-W52-7} { + clock format 473212800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1984-W52-7 +} {Sun Sunday 84 1984 7 53 52 0 52} +test clock-3.403 {ISO week-based calendar 1985-W01-1} { + clock format 473299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-1 +} {Mon Monday 85 1985 1 53 01 1 53} +test clock-3.404 {ISO week-based calendar 1985-W01-2} { + clock format 473385600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-2 +} {Tue Tuesday 85 1985 2 00 01 2 00} +test clock-3.405 {ISO week-based calendar 1985-W01-6} { + clock format 473731200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-6 +} {Sat Saturday 85 1985 6 00 01 6 00} +test clock-3.406 {ISO week-based calendar 1985-W01-7} { + clock format 473817600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W01-7 +} {Sun Sunday 85 1985 7 01 01 0 00} +test clock-3.407 {ISO week-based calendar 1985-W02-1} { + clock format 473904000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1985-W02-1 +} {Mon Monday 85 1985 1 01 02 1 01} +test clock-3.408 {ISO week-based calendar 1987-W53-1} { + clock format 567648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-1 +} {Mon Monday 87 1987 1 52 53 1 52} +test clock-3.409 {ISO week-based calendar 1987-W53-5} { + clock format 567993600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-5 +} {Fri Friday 87 1987 5 00 53 5 00} +test clock-3.410 {ISO week-based calendar 1987-W53-6} { + clock format 568080000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-6 +} {Sat Saturday 87 1987 6 00 53 6 00} +test clock-3.411 {ISO week-based calendar 1987-W53-7} { + clock format 568166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1987-W53-7 +} {Sun Sunday 87 1987 7 01 53 0 00} +test clock-3.412 {ISO week-based calendar 1988-W01-1} { + clock format 568252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W01-1 +} {Mon Monday 88 1988 1 01 01 1 01} +test clock-3.413 {ISO week-based calendar 1988-W01-6} { + clock format 568684800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W01-6 +} {Sat Saturday 88 1988 6 01 01 6 01} +test clock-3.414 {ISO week-based calendar 1988-W01-7} { + clock format 568771200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W01-7 +} {Sun Sunday 88 1988 7 02 01 0 01} +test clock-3.415 {ISO week-based calendar 1988-W02-1} { + clock format 568857600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W02-1 +} {Mon Monday 88 1988 1 02 02 1 02} +test clock-3.416 {ISO week-based calendar 1988-W52-1} { + clock format 599097600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W52-1 +} {Mon Monday 88 1988 1 52 52 1 52} +test clock-3.417 {ISO week-based calendar 1988-W52-6} { + clock format 599529600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W52-6 +} {Sat Saturday 88 1988 6 52 52 6 52} +test clock-3.418 {ISO week-based calendar 1988-W52-7} { + clock format 599616000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1988-W52-7 +} {Sun Sunday 88 1988 7 01 52 0 00} +test clock-3.419 {ISO week-based calendar 1989-W01-1} { + clock format 599702400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W01-1 +} {Mon Monday 89 1989 1 01 01 1 01} +test clock-3.420 {ISO week-based calendar 1989-W01-6} { + clock format 600134400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W01-6 +} {Sat Saturday 89 1989 6 01 01 6 01} +test clock-3.421 {ISO week-based calendar 1989-W01-7} { + clock format 600220800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W01-7 +} {Sun Sunday 89 1989 7 02 01 0 01} +test clock-3.422 {ISO week-based calendar 1989-W02-1} { + clock format 600307200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1989-W02-1 +} {Mon Monday 89 1989 1 02 02 1 02} +test clock-3.423 {ISO week-based calendar 1991-W52-1} { + clock format 693446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1991-W52-1 +} {Mon Monday 91 1991 1 51 52 1 51} +test clock-3.424 {ISO week-based calendar 1991-W52-6} { + clock format 693878400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1991-W52-6 +} {Sat Saturday 91 1991 6 51 52 6 51} +test clock-3.425 {ISO week-based calendar 1991-W52-7} { + clock format 693964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1991-W52-7 +} {Sun Sunday 91 1991 7 52 52 0 51} +test clock-3.426 {ISO week-based calendar 1992-W01-1} { + clock format 694051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-1 +} {Mon Monday 92 1992 1 52 01 1 52} +test clock-3.427 {ISO week-based calendar 1992-W01-3} { + clock format 694224000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-3 +} {Wed Wednesday 92 1992 3 00 01 3 00} +test clock-3.428 {ISO week-based calendar 1992-W01-6} { + clock format 694483200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-6 +} {Sat Saturday 92 1992 6 00 01 6 00} +test clock-3.429 {ISO week-based calendar 1992-W01-7} { + clock format 694569600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W01-7 +} {Sun Sunday 92 1992 7 01 01 0 00} +test clock-3.430 {ISO week-based calendar 1992-W02-1} { + clock format 694656000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W02-1 +} {Mon Monday 92 1992 1 01 02 1 01} +test clock-3.431 {ISO week-based calendar 1992-W53-1} { + clock format 725500800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-1 +} {Mon Monday 92 1992 1 52 53 1 52} +test clock-3.432 {ISO week-based calendar 1992-W53-5} { + clock format 725846400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-5 +} {Fri Friday 92 1992 5 00 53 5 00} +test clock-3.433 {ISO week-based calendar 1992-W53-6} { + clock format 725932800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-6 +} {Sat Saturday 92 1992 6 00 53 6 00} +test clock-3.434 {ISO week-based calendar 1992-W53-7} { + clock format 726019200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1992-W53-7 +} {Sun Sunday 92 1992 7 01 53 0 00} +test clock-3.435 {ISO week-based calendar 1993-W01-1} { + clock format 726105600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W01-1 +} {Mon Monday 93 1993 1 01 01 1 01} +test clock-3.436 {ISO week-based calendar 1993-W01-6} { + clock format 726537600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W01-6 +} {Sat Saturday 93 1993 6 01 01 6 01} +test clock-3.437 {ISO week-based calendar 1993-W01-7} { + clock format 726624000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W01-7 +} {Sun Sunday 93 1993 7 02 01 0 01} +test clock-3.438 {ISO week-based calendar 1993-W02-1} { + clock format 726710400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1993-W02-1 +} {Mon Monday 93 1993 1 02 02 1 02} +test clock-3.439 {ISO week-based calendar 1995-W52-1} { + clock format 819849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1995-W52-1 +} {Mon Monday 95 1995 1 52 52 1 52} +test clock-3.440 {ISO week-based calendar 1995-W52-6} { + clock format 820281600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1995-W52-6 +} {Sat Saturday 95 1995 6 52 52 6 52} +test clock-3.441 {ISO week-based calendar 1995-W52-7} { + clock format 820368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1995-W52-7 +} {Sun Sunday 95 1995 7 53 52 0 52} +test clock-3.442 {ISO week-based calendar 1996-W01-1} { + clock format 820454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W01-1 +} {Mon Monday 96 1996 1 00 01 1 01} +test clock-3.443 {ISO week-based calendar 1996-W01-6} { + clock format 820886400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W01-6 +} {Sat Saturday 96 1996 6 00 01 6 01} +test clock-3.444 {ISO week-based calendar 1996-W01-7} { + clock format 820972800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W01-7 +} {Sun Sunday 96 1996 7 01 01 0 01} +test clock-3.445 {ISO week-based calendar 1996-W02-1} { + clock format 821059200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W02-1 +} {Mon Monday 96 1996 1 01 02 1 02} +test clock-3.446 {ISO week-based calendar 1996-W52-1} { + clock format 851299200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W52-1 +} {Mon Monday 96 1996 1 51 52 1 52} +test clock-3.447 {ISO week-based calendar 1996-W52-6} { + clock format 851731200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W52-6 +} {Sat Saturday 96 1996 6 51 52 6 52} +test clock-3.448 {ISO week-based calendar 1996-W52-7} { + clock format 851817600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1996-W52-7 +} {Sun Sunday 96 1996 7 52 52 0 52} +test clock-3.449 {ISO week-based calendar 1997-W01-1} { + clock format 851904000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-1 +} {Mon Monday 97 1997 1 52 01 1 53} +test clock-3.450 {ISO week-based calendar 1997-W01-3} { + clock format 852076800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-3 +} {Wed Wednesday 97 1997 3 00 01 3 00} +test clock-3.451 {ISO week-based calendar 1997-W01-6} { + clock format 852336000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-6 +} {Sat Saturday 97 1997 6 00 01 6 00} +test clock-3.452 {ISO week-based calendar 1997-W01-7} { + clock format 852422400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W01-7 +} {Sun Sunday 97 1997 7 01 01 0 00} +test clock-3.453 {ISO week-based calendar 1997-W02-1} { + clock format 852508800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1997-W02-1 +} {Mon Monday 97 1997 1 01 02 1 01} +test clock-3.454 {ISO week-based calendar 1999-W52-1} { + clock format 946252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1999-W52-1 +} {Mon Monday 99 1999 1 52 52 1 52} +test clock-3.455 {ISO week-based calendar 1999-W52-6} { + clock format 946684800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1999-W52-6 +} {Sat Saturday 99 1999 6 00 52 6 00} +test clock-3.456 {ISO week-based calendar 1999-W52-7} { + clock format 946771200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 1999-W52-7 +} {Sun Sunday 99 1999 7 01 52 0 00} +test clock-3.457 {ISO week-based calendar 2000-W01-1} { + clock format 946857600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W01-1 +} {Mon Monday 00 2000 1 01 01 1 01} +test clock-3.458 {ISO week-based calendar 2000-W01-6} { + clock format 947289600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W01-6 +} {Sat Saturday 00 2000 6 01 01 6 01} +test clock-3.459 {ISO week-based calendar 2000-W01-7} { + clock format 947376000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W01-7 +} {Sun Sunday 00 2000 7 02 01 0 01} +test clock-3.460 {ISO week-based calendar 2000-W02-1} { + clock format 947462400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W02-1 +} {Mon Monday 00 2000 1 02 02 1 02} +test clock-3.461 {ISO week-based calendar 2000-W52-1} { + clock format 977702400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W52-1 +} {Mon Monday 00 2000 1 52 52 1 52} +test clock-3.462 {ISO week-based calendar 2000-W52-6} { + clock format 978134400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W52-6 +} {Sat Saturday 00 2000 6 52 52 6 52} +test clock-3.463 {ISO week-based calendar 2000-W52-7} { + clock format 978220800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2000-W52-7 +} {Sun Sunday 00 2000 7 53 52 0 52} +test clock-3.464 {ISO week-based calendar 2001-W01-1} { + clock format 978307200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W01-1 +} {Mon Monday 01 2001 1 00 01 1 01} +test clock-3.465 {ISO week-based calendar 2001-W01-6} { + clock format 978739200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W01-6 +} {Sat Saturday 01 2001 6 00 01 6 01} +test clock-3.466 {ISO week-based calendar 2001-W01-7} { + clock format 978825600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W01-7 +} {Sun Sunday 01 2001 7 01 01 0 01} +test clock-3.467 {ISO week-based calendar 2001-W02-1} { + clock format 978912000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W02-1 +} {Mon Monday 01 2001 1 01 02 1 02} +test clock-3.468 {ISO week-based calendar 2001-W52-1} { + clock format 1009152000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W52-1 +} {Mon Monday 01 2001 1 51 52 1 52} +test clock-3.469 {ISO week-based calendar 2001-W52-6} { + clock format 1009584000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W52-6 +} {Sat Saturday 01 2001 6 51 52 6 52} +test clock-3.470 {ISO week-based calendar 2001-W52-7} { + clock format 1009670400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2001-W52-7 +} {Sun Sunday 01 2001 7 52 52 0 52} +test clock-3.471 {ISO week-based calendar 2002-W01-1} { + clock format 1009756800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-1 +} {Mon Monday 02 2002 1 52 01 1 53} +test clock-3.472 {ISO week-based calendar 2002-W01-2} { + clock format 1009843200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-2 +} {Tue Tuesday 02 2002 2 00 01 2 00} +test clock-3.473 {ISO week-based calendar 2002-W01-6} { + clock format 1010188800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-6 +} {Sat Saturday 02 2002 6 00 01 6 00} +test clock-3.474 {ISO week-based calendar 2002-W01-7} { + clock format 1010275200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W01-7 +} {Sun Sunday 02 2002 7 01 01 0 00} +test clock-3.475 {ISO week-based calendar 2002-W02-1} { + clock format 1010361600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W02-1 +} {Mon Monday 02 2002 1 01 02 1 01} +test clock-3.476 {ISO week-based calendar 2002-W52-1} { + clock format 1040601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W52-1 +} {Mon Monday 02 2002 1 51 52 1 51} +test clock-3.477 {ISO week-based calendar 2002-W52-6} { + clock format 1041033600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W52-6 +} {Sat Saturday 02 2002 6 51 52 6 51} +test clock-3.478 {ISO week-based calendar 2002-W52-7} { + clock format 1041120000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2002-W52-7 +} {Sun Sunday 02 2002 7 52 52 0 51} +test clock-3.479 {ISO week-based calendar 2003-W01-1} { + clock format 1041206400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-1 +} {Mon Monday 03 2003 1 52 01 1 52} +test clock-3.480 {ISO week-based calendar 2003-W01-3} { + clock format 1041379200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-3 +} {Wed Wednesday 03 2003 3 00 01 3 00} +test clock-3.481 {ISO week-based calendar 2003-W01-6} { + clock format 1041638400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-6 +} {Sat Saturday 03 2003 6 00 01 6 00} +test clock-3.482 {ISO week-based calendar 2003-W01-7} { + clock format 1041724800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W01-7 +} {Sun Sunday 03 2003 7 01 01 0 00} +test clock-3.483 {ISO week-based calendar 2003-W02-1} { + clock format 1041811200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W02-1 +} {Mon Monday 03 2003 1 01 02 1 01} +test clock-3.484 {ISO week-based calendar 2003-W52-1} { + clock format 1072051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W52-1 +} {Mon Monday 03 2003 1 51 52 1 51} +test clock-3.485 {ISO week-based calendar 2003-W52-6} { + clock format 1072483200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W52-6 +} {Sat Saturday 03 2003 6 51 52 6 51} +test clock-3.486 {ISO week-based calendar 2003-W52-7} { + clock format 1072569600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2003-W52-7 +} {Sun Sunday 03 2003 7 52 52 0 51} +test clock-3.487 {ISO week-based calendar 2004-W01-1} { + clock format 1072656000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-1 +} {Mon Monday 04 2004 1 52 01 1 52} +test clock-3.488 {ISO week-based calendar 2004-W01-4} { + clock format 1072915200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-4 +} {Thu Thursday 04 2004 4 00 01 4 00} +test clock-3.489 {ISO week-based calendar 2004-W01-6} { + clock format 1073088000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-6 +} {Sat Saturday 04 2004 6 00 01 6 00} +test clock-3.490 {ISO week-based calendar 2004-W01-7} { + clock format 1073174400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W01-7 +} {Sun Sunday 04 2004 7 01 01 0 00} +test clock-3.491 {ISO week-based calendar 2004-W02-1} { + clock format 1073260800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W02-1 +} {Mon Monday 04 2004 1 01 02 1 01} +test clock-3.492 {ISO week-based calendar 2004-W53-1} { + clock format 1104105600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W53-1 +} {Mon Monday 04 2004 1 52 53 1 52} +test clock-3.493 {ISO week-based calendar 2004-W53-6} { + clock format 1104537600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W53-6 +} {Sat Saturday 04 2004 6 00 53 6 00} +test clock-3.494 {ISO week-based calendar 2004-W53-7} { + clock format 1104624000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2004-W53-7 +} {Sun Sunday 04 2004 7 01 53 0 00} +test clock-3.495 {ISO week-based calendar 2005-W01-1} { + clock format 1104710400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W01-1 +} {Mon Monday 05 2005 1 01 01 1 01} +test clock-3.496 {ISO week-based calendar 2005-W01-6} { + clock format 1105142400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W01-6 +} {Sat Saturday 05 2005 6 01 01 6 01} +test clock-3.497 {ISO week-based calendar 2005-W01-7} { + clock format 1105228800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W01-7 +} {Sun Sunday 05 2005 7 02 01 0 01} +test clock-3.498 {ISO week-based calendar 2005-W02-1} { + clock format 1105315200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W02-1 +} {Mon Monday 05 2005 1 02 02 1 02} +test clock-3.499 {ISO week-based calendar 2005-W52-1} { + clock format 1135555200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W52-1 +} {Mon Monday 05 2005 1 52 52 1 52} +test clock-3.500 {ISO week-based calendar 2005-W52-6} { + clock format 1135987200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W52-6 +} {Sat Saturday 05 2005 6 52 52 6 52} +test clock-3.501 {ISO week-based calendar 2005-W52-7} { + clock format 1136073600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2005-W52-7 +} {Sun Sunday 05 2005 7 01 52 0 00} +test clock-3.502 {ISO week-based calendar 2006-W01-1} { + clock format 1136160000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W01-1 +} {Mon Monday 06 2006 1 01 01 1 01} +test clock-3.503 {ISO week-based calendar 2006-W01-6} { + clock format 1136592000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W01-6 +} {Sat Saturday 06 2006 6 01 01 6 01} +test clock-3.504 {ISO week-based calendar 2006-W01-7} { + clock format 1136678400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W01-7 +} {Sun Sunday 06 2006 7 02 01 0 01} +test clock-3.505 {ISO week-based calendar 2006-W02-1} { + clock format 1136764800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W02-1 +} {Mon Monday 06 2006 1 02 02 1 02} +test clock-3.506 {ISO week-based calendar 2006-W52-1} { + clock format 1167004800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W52-1 +} {Mon Monday 06 2006 1 52 52 1 52} +test clock-3.507 {ISO week-based calendar 2006-W52-6} { + clock format 1167436800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W52-6 +} {Sat Saturday 06 2006 6 52 52 6 52} +test clock-3.508 {ISO week-based calendar 2006-W52-7} { + clock format 1167523200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2006-W52-7 +} {Sun Sunday 06 2006 7 53 52 0 52} +test clock-3.509 {ISO week-based calendar 2007-W01-1} { + clock format 1167609600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W01-1 +} {Mon Monday 07 2007 1 00 01 1 01} +test clock-3.510 {ISO week-based calendar 2007-W01-6} { + clock format 1168041600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W01-6 +} {Sat Saturday 07 2007 6 00 01 6 01} +test clock-3.511 {ISO week-based calendar 2007-W01-7} { + clock format 1168128000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W01-7 +} {Sun Sunday 07 2007 7 01 01 0 01} +test clock-3.512 {ISO week-based calendar 2007-W02-1} { + clock format 1168214400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W02-1 +} {Mon Monday 07 2007 1 01 02 1 02} +test clock-3.513 {ISO week-based calendar 2007-W52-1} { + clock format 1198454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W52-1 +} {Mon Monday 07 2007 1 51 52 1 52} +test clock-3.514 {ISO week-based calendar 2007-W52-6} { + clock format 1198886400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W52-6 +} {Sat Saturday 07 2007 6 51 52 6 52} +test clock-3.515 {ISO week-based calendar 2007-W52-7} { + clock format 1198972800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2007-W52-7 +} {Sun Sunday 07 2007 7 52 52 0 52} +test clock-3.516 {ISO week-based calendar 2008-W01-1} { + clock format 1199059200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-1 +} {Mon Monday 08 2008 1 52 01 1 53} +test clock-3.517 {ISO week-based calendar 2008-W01-2} { + clock format 1199145600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-2 +} {Tue Tuesday 08 2008 2 00 01 2 00} +test clock-3.518 {ISO week-based calendar 2008-W01-6} { + clock format 1199491200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-6 +} {Sat Saturday 08 2008 6 00 01 6 00} +test clock-3.519 {ISO week-based calendar 2008-W01-7} { + clock format 1199577600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W01-7 +} {Sun Sunday 08 2008 7 01 01 0 00} +test clock-3.520 {ISO week-based calendar 2008-W02-1} { + clock format 1199664000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W02-1 +} {Mon Monday 08 2008 1 01 02 1 01} +test clock-3.521 {ISO week-based calendar 2008-W52-1} { + clock format 1229904000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W52-1 +} {Mon Monday 08 2008 1 51 52 1 51} +test clock-3.522 {ISO week-based calendar 2008-W52-6} { + clock format 1230336000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W52-6 +} {Sat Saturday 08 2008 6 51 52 6 51} +test clock-3.523 {ISO week-based calendar 2008-W52-7} { + clock format 1230422400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2008-W52-7 +} {Sun Sunday 08 2008 7 52 52 0 51} +test clock-3.524 {ISO week-based calendar 2009-W01-1} { + clock format 1230508800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-1 +} {Mon Monday 09 2009 1 52 01 1 52} +test clock-3.525 {ISO week-based calendar 2009-W01-4} { + clock format 1230768000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-4 +} {Thu Thursday 09 2009 4 00 01 4 00} +test clock-3.526 {ISO week-based calendar 2009-W01-6} { + clock format 1230940800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-6 +} {Sat Saturday 09 2009 6 00 01 6 00} +test clock-3.527 {ISO week-based calendar 2009-W01-7} { + clock format 1231027200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W01-7 +} {Sun Sunday 09 2009 7 01 01 0 00} +test clock-3.528 {ISO week-based calendar 2009-W02-1} { + clock format 1231113600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W02-1 +} {Mon Monday 09 2009 1 01 02 1 01} +test clock-3.529 {ISO week-based calendar 2009-W53-1} { + clock format 1261958400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-1 +} {Mon Monday 09 2009 1 52 53 1 52} +test clock-3.530 {ISO week-based calendar 2009-W53-5} { + clock format 1262304000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-5 +} {Fri Friday 09 2009 5 00 53 5 00} +test clock-3.531 {ISO week-based calendar 2009-W53-6} { + clock format 1262390400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-6 +} {Sat Saturday 09 2009 6 00 53 6 00} +test clock-3.532 {ISO week-based calendar 2009-W53-7} { + clock format 1262476800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2009-W53-7 +} {Sun Sunday 09 2009 7 01 53 0 00} +test clock-3.533 {ISO week-based calendar 2010-W01-1} { + clock format 1262563200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W01-1 +} {Mon Monday 10 2010 1 01 01 1 01} +test clock-3.534 {ISO week-based calendar 2010-W01-6} { + clock format 1262995200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W01-6 +} {Sat Saturday 10 2010 6 01 01 6 01} +test clock-3.535 {ISO week-based calendar 2010-W01-7} { + clock format 1263081600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W01-7 +} {Sun Sunday 10 2010 7 02 01 0 01} +test clock-3.536 {ISO week-based calendar 2010-W02-1} { + clock format 1263168000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W02-1 +} {Mon Monday 10 2010 1 02 02 1 02} +test clock-3.537 {ISO week-based calendar 2010-W52-1} { + clock format 1293408000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W52-1 +} {Mon Monday 10 2010 1 52 52 1 52} +test clock-3.538 {ISO week-based calendar 2010-W52-6} { + clock format 1293840000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W52-6 +} {Sat Saturday 10 2010 6 00 52 6 00} +test clock-3.539 {ISO week-based calendar 2010-W52-7} { + clock format 1293926400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2010-W52-7 +} {Sun Sunday 10 2010 7 01 52 0 00} +test clock-3.540 {ISO week-based calendar 2011-W01-1} { + clock format 1294012800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W01-1 +} {Mon Monday 11 2011 1 01 01 1 01} +test clock-3.541 {ISO week-based calendar 2011-W01-6} { + clock format 1294444800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W01-6 +} {Sat Saturday 11 2011 6 01 01 6 01} +test clock-3.542 {ISO week-based calendar 2011-W01-7} { + clock format 1294531200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W01-7 +} {Sun Sunday 11 2011 7 02 01 0 01} +test clock-3.543 {ISO week-based calendar 2011-W02-1} { + clock format 1294617600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W02-1 +} {Mon Monday 11 2011 1 02 02 1 02} +test clock-3.544 {ISO week-based calendar 2011-W52-1} { + clock format 1324857600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W52-1 +} {Mon Monday 11 2011 1 52 52 1 52} +test clock-3.545 {ISO week-based calendar 2011-W52-6} { + clock format 1325289600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W52-6 +} {Sat Saturday 11 2011 6 52 52 6 52} +test clock-3.546 {ISO week-based calendar 2011-W52-7} { + clock format 1325376000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2011-W52-7 +} {Sun Sunday 11 2011 7 01 52 0 00} +test clock-3.547 {ISO week-based calendar 2012-W01-1} { + clock format 1325462400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W01-1 +} {Mon Monday 12 2012 1 01 01 1 01} +test clock-3.548 {ISO week-based calendar 2012-W01-6} { + clock format 1325894400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W01-6 +} {Sat Saturday 12 2012 6 01 01 6 01} +test clock-3.549 {ISO week-based calendar 2012-W01-7} { + clock format 1325980800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W01-7 +} {Sun Sunday 12 2012 7 02 01 0 01} +test clock-3.550 {ISO week-based calendar 2012-W02-1} { + clock format 1326067200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W02-1 +} {Mon Monday 12 2012 1 02 02 1 02} +test clock-3.551 {ISO week-based calendar 2012-W52-1} { + clock format 1356307200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W52-1 +} {Mon Monday 12 2012 1 52 52 1 52} +test clock-3.552 {ISO week-based calendar 2012-W52-6} { + clock format 1356739200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W52-6 +} {Sat Saturday 12 2012 6 52 52 6 52} +test clock-3.553 {ISO week-based calendar 2012-W52-7} { + clock format 1356825600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2012-W52-7 +} {Sun Sunday 12 2012 7 53 52 0 52} +test clock-3.554 {ISO week-based calendar 2013-W01-1} { + clock format 1356912000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-1 +} {Mon Monday 13 2013 1 53 01 1 53} +test clock-3.555 {ISO week-based calendar 2013-W01-2} { + clock format 1356998400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-2 +} {Tue Tuesday 13 2013 2 00 01 2 00} +test clock-3.556 {ISO week-based calendar 2013-W01-6} { + clock format 1357344000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-6 +} {Sat Saturday 13 2013 6 00 01 6 00} +test clock-3.557 {ISO week-based calendar 2013-W01-7} { + clock format 1357430400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W01-7 +} {Sun Sunday 13 2013 7 01 01 0 00} +test clock-3.558 {ISO week-based calendar 2013-W02-1} { + clock format 1357516800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2013-W02-1 +} {Mon Monday 13 2013 1 01 02 1 01} +test clock-3.559 {ISO week-based calendar 2015-W53-1} { + clock format 1451260800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-1 +} {Mon Monday 15 2015 1 52 53 1 52} +test clock-3.560 {ISO week-based calendar 2015-W53-5} { + clock format 1451606400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-5 +} {Fri Friday 15 2015 5 00 53 5 00} +test clock-3.561 {ISO week-based calendar 2015-W53-6} { + clock format 1451692800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-6 +} {Sat Saturday 15 2015 6 00 53 6 00} +test clock-3.562 {ISO week-based calendar 2015-W53-7} { + clock format 1451779200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2015-W53-7 +} {Sun Sunday 15 2015 7 01 53 0 00} +test clock-3.563 {ISO week-based calendar 2016-W01-1} { + clock format 1451865600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W01-1 +} {Mon Monday 16 2016 1 01 01 1 01} +test clock-3.564 {ISO week-based calendar 2016-W01-6} { + clock format 1452297600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W01-6 +} {Sat Saturday 16 2016 6 01 01 6 01} +test clock-3.565 {ISO week-based calendar 2016-W01-7} { + clock format 1452384000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W01-7 +} {Sun Sunday 16 2016 7 02 01 0 01} +test clock-3.566 {ISO week-based calendar 2016-W02-1} { + clock format 1452470400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W02-1 +} {Mon Monday 16 2016 1 02 02 1 02} +test clock-3.567 {ISO week-based calendar 2016-W52-1} { + clock format 1482710400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W52-1 +} {Mon Monday 16 2016 1 52 52 1 52} +test clock-3.568 {ISO week-based calendar 2016-W52-6} { + clock format 1483142400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W52-6 +} {Sat Saturday 16 2016 6 52 52 6 52} +test clock-3.569 {ISO week-based calendar 2016-W52-7} { + clock format 1483228800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2016-W52-7 +} {Sun Sunday 16 2016 7 01 52 0 00} +test clock-3.570 {ISO week-based calendar 2017-W01-1} { + clock format 1483315200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W01-1 +} {Mon Monday 17 2017 1 01 01 1 01} +test clock-3.571 {ISO week-based calendar 2017-W01-6} { + clock format 1483747200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W01-6 +} {Sat Saturday 17 2017 6 01 01 6 01} +test clock-3.572 {ISO week-based calendar 2017-W01-7} { + clock format 1483833600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W01-7 +} {Sun Sunday 17 2017 7 02 01 0 01} +test clock-3.573 {ISO week-based calendar 2017-W02-1} { + clock format 1483920000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2017-W02-1 +} {Mon Monday 17 2017 1 02 02 1 02} +test clock-3.574 {ISO week-based calendar 2019-W52-1} { + clock format 1577059200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2019-W52-1 +} {Mon Monday 19 2019 1 51 52 1 51} +test clock-3.575 {ISO week-based calendar 2019-W52-6} { + clock format 1577491200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2019-W52-6 +} {Sat Saturday 19 2019 6 51 52 6 51} +test clock-3.576 {ISO week-based calendar 2019-W52-7} { + clock format 1577577600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2019-W52-7 +} {Sun Sunday 19 2019 7 52 52 0 51} +test clock-3.577 {ISO week-based calendar 2020-W01-1} { + clock format 1577664000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-1 +} {Mon Monday 20 2020 1 52 01 1 52} +test clock-3.578 {ISO week-based calendar 2020-W01-3} { + clock format 1577836800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-3 +} {Wed Wednesday 20 2020 3 00 01 3 00} +test clock-3.579 {ISO week-based calendar 2020-W01-6} { + clock format 1578096000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-6 +} {Sat Saturday 20 2020 6 00 01 6 00} +test clock-3.580 {ISO week-based calendar 2020-W01-7} { + clock format 1578182400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W01-7 +} {Sun Sunday 20 2020 7 01 01 0 00} +test clock-3.581 {ISO week-based calendar 2020-W02-1} { + clock format 1578268800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W02-1 +} {Mon Monday 20 2020 1 01 02 1 01} +test clock-3.582 {ISO week-based calendar 2020-W53-1} { + clock format 1609113600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-1 +} {Mon Monday 20 2020 1 52 53 1 52} +test clock-3.583 {ISO week-based calendar 2020-W53-5} { + clock format 1609459200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-5 +} {Fri Friday 20 2020 5 00 53 5 00} +test clock-3.584 {ISO week-based calendar 2020-W53-6} { + clock format 1609545600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-6 +} {Sat Saturday 20 2020 6 00 53 6 00} +test clock-3.585 {ISO week-based calendar 2020-W53-7} { + clock format 1609632000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2020-W53-7 +} {Sun Sunday 20 2020 7 01 53 0 00} +test clock-3.586 {ISO week-based calendar 2021-W01-1} { + clock format 1609718400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W01-1 +} {Mon Monday 21 2021 1 01 01 1 01} +test clock-3.587 {ISO week-based calendar 2021-W01-6} { + clock format 1610150400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W01-6 +} {Sat Saturday 21 2021 6 01 01 6 01} +test clock-3.588 {ISO week-based calendar 2021-W01-7} { + clock format 1610236800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W01-7 +} {Sun Sunday 21 2021 7 02 01 0 01} +test clock-3.589 {ISO week-based calendar 2021-W02-1} { + clock format 1610323200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2021-W02-1 +} {Mon Monday 21 2021 1 02 02 1 02} +test clock-3.590 {ISO week-based calendar 2023-W52-1} { + clock format 1703462400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2023-W52-1 +} {Mon Monday 23 2023 1 52 52 1 52} +test clock-3.591 {ISO week-based calendar 2023-W52-6} { + clock format 1703894400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2023-W52-6 +} {Sat Saturday 23 2023 6 52 52 6 52} +test clock-3.592 {ISO week-based calendar 2023-W52-7} { + clock format 1703980800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2023-W52-7 +} {Sun Sunday 23 2023 7 53 52 0 52} +test clock-3.593 {ISO week-based calendar 2024-W01-1} { + clock format 1704067200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W01-1 +} {Mon Monday 24 2024 1 00 01 1 01} +test clock-3.594 {ISO week-based calendar 2024-W01-6} { + clock format 1704499200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W01-6 +} {Sat Saturday 24 2024 6 00 01 6 01} +test clock-3.595 {ISO week-based calendar 2024-W01-7} { + clock format 1704585600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W01-7 +} {Sun Sunday 24 2024 7 01 01 0 01} +test clock-3.596 {ISO week-based calendar 2024-W02-1} { + clock format 1704672000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W02-1 +} {Mon Monday 24 2024 1 01 02 1 02} +test clock-3.597 {ISO week-based calendar 2024-W52-1} { + clock format 1734912000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W52-1 +} {Mon Monday 24 2024 1 51 52 1 52} +test clock-3.598 {ISO week-based calendar 2024-W52-6} { + clock format 1735344000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W52-6 +} {Sat Saturday 24 2024 6 51 52 6 52} +test clock-3.599 {ISO week-based calendar 2024-W52-7} { + clock format 1735430400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2024-W52-7 +} {Sun Sunday 24 2024 7 52 52 0 52} +test clock-3.600 {ISO week-based calendar 2025-W01-1} { + clock format 1735516800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-1 +} {Mon Monday 25 2025 1 52 01 1 53} +test clock-3.601 {ISO week-based calendar 2025-W01-3} { + clock format 1735689600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-3 +} {Wed Wednesday 25 2025 3 00 01 3 00} +test clock-3.602 {ISO week-based calendar 2025-W01-6} { + clock format 1735948800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-6 +} {Sat Saturday 25 2025 6 00 01 6 00} +test clock-3.603 {ISO week-based calendar 2025-W01-7} { + clock format 1736035200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W01-7 +} {Sun Sunday 25 2025 7 01 01 0 00} +test clock-3.604 {ISO week-based calendar 2025-W02-1} { + clock format 1736121600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2025-W02-1 +} {Mon Monday 25 2025 1 01 02 1 01} +test clock-3.605 {ISO week-based calendar 2036-W52-1} { + clock format 2113516800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2036-W52-1 +} {Mon Monday 36 2036 1 51 52 1 51} +test clock-3.606 {ISO week-based calendar 2036-W52-6} { + clock format 2113948800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2036-W52-6 +} {Sat Saturday 36 2036 6 51 52 6 51} +test clock-3.607 {ISO week-based calendar 2036-W52-7} { + clock format 2114035200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2036-W52-7 +} {Sun Sunday 36 2036 7 52 52 0 51} +test clock-3.608 {ISO week-based calendar 2037-W01-1} { + clock format 2114121600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-1 +} {Mon Monday 37 2037 1 52 01 1 52} +test clock-3.609 {ISO week-based calendar 2037-W01-4} { + clock format 2114380800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-4 +} {Thu Thursday 37 2037 4 00 01 4 00} +test clock-3.610 {ISO week-based calendar 2037-W01-6} { + clock format 2114553600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-6 +} {Sat Saturday 37 2037 6 00 01 6 00} +test clock-3.611 {ISO week-based calendar 2037-W01-7} { + clock format 2114640000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W01-7 +} {Sun Sunday 37 2037 7 01 01 0 00} +test clock-3.612 {ISO week-based calendar 2037-W02-1} { + clock format 2114726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W02-1 +} {Mon Monday 37 2037 1 01 02 1 01} +test clock-3.613 {ISO week-based calendar 2037-W53-1} { + clock format 2145571200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-1 +} {Mon Monday 37 2037 1 52 53 1 52} +test clock-3.614 {ISO week-based calendar 2037-W53-5} { + clock format 2145916800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-5 +} {Fri Friday 37 2037 5 00 53 5 00} +test clock-3.615 {ISO week-based calendar 2037-W53-6} { + clock format 2146003200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-6 +} {Sat Saturday 37 2037 6 00 53 6 00} +test clock-3.616 {ISO week-based calendar 2037-W53-7} { + clock format 2146089600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2037-W53-7 +} {Sun Sunday 37 2037 7 01 53 0 00} +test clock-3.617 {ISO week-based calendar 2038-W01-1} { + clock format 2146176000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W01-1 +} {Mon Monday 38 2038 1 01 01 1 01} +test clock-3.618 {ISO week-based calendar 2038-W01-6} { + clock format 2146608000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W01-6 +} {Sat Saturday 38 2038 6 01 01 6 01} +test clock-3.619 {ISO week-based calendar 2038-W01-7} { + clock format 2146694400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W01-7 +} {Sun Sunday 38 2038 7 02 01 0 01} +test clock-3.620 {ISO week-based calendar 2038-W02-1} { + clock format 2146780800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W02-1 +} {Mon Monday 38 2038 1 02 02 1 02} +test clock-3.621 {ISO week-based calendar 2038-W52-1} { + clock format 2177020800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W52-1 +} {Mon Monday 38 2038 1 52 52 1 52} +test clock-3.622 {ISO week-based calendar 2038-W52-6} { + clock format 2177452800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W52-6 +} {Sat Saturday 38 2038 6 00 52 6 00} +test clock-3.623 {ISO week-based calendar 2038-W52-7} { + clock format 2177539200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2038-W52-7 +} {Sun Sunday 38 2038 7 01 52 0 00} +test clock-3.624 {ISO week-based calendar 2039-W01-1} { + clock format 2177625600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W01-1 +} {Mon Monday 39 2039 1 01 01 1 01} +test clock-3.625 {ISO week-based calendar 2039-W01-6} { + clock format 2178057600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W01-6 +} {Sat Saturday 39 2039 6 01 01 6 01} +test clock-3.626 {ISO week-based calendar 2039-W01-7} { + clock format 2178144000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W01-7 +} {Sun Sunday 39 2039 7 02 01 0 01} +test clock-3.627 {ISO week-based calendar 2039-W02-1} { + clock format 2178230400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W02-1 +} {Mon Monday 39 2039 1 02 02 1 02} +test clock-3.628 {ISO week-based calendar 2039-W52-1} { + clock format 2208470400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W52-1 +} {Mon Monday 39 2039 1 52 52 1 52} +test clock-3.629 {ISO week-based calendar 2039-W52-6} { + clock format 2208902400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W52-6 +} {Sat Saturday 39 2039 6 52 52 6 52} +test clock-3.630 {ISO week-based calendar 2039-W52-7} { + clock format 2208988800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2039-W52-7 +} {Sun Sunday 39 2039 7 01 52 0 00} +test clock-3.631 {ISO week-based calendar 2040-W01-1} { + clock format 2209075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W01-1 +} {Mon Monday 40 2040 1 01 01 1 01} +test clock-3.632 {ISO week-based calendar 2040-W01-6} { + clock format 2209507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W01-6 +} {Sat Saturday 40 2040 6 01 01 6 01} +test clock-3.633 {ISO week-based calendar 2040-W01-7} { + clock format 2209593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W01-7 +} {Sun Sunday 40 2040 7 02 01 0 01} +test clock-3.634 {ISO week-based calendar 2040-W02-1} { + clock format 2209680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W02-1 +} {Mon Monday 40 2040 1 02 02 1 02} +test clock-3.635 {ISO week-based calendar 2040-W52-1} { + clock format 2239920000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W52-1 +} {Mon Monday 40 2040 1 52 52 1 52} +test clock-3.636 {ISO week-based calendar 2040-W52-6} { + clock format 2240352000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W52-6 +} {Sat Saturday 40 2040 6 52 52 6 52} +test clock-3.637 {ISO week-based calendar 2040-W52-7} { + clock format 2240438400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2040-W52-7 +} {Sun Sunday 40 2040 7 53 52 0 52} +test clock-3.638 {ISO week-based calendar 2041-W01-1} { + clock format 2240524800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-1 +} {Mon Monday 41 2041 1 53 01 1 53} +test clock-3.639 {ISO week-based calendar 2041-W01-2} { + clock format 2240611200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-2 +} {Tue Tuesday 41 2041 2 00 01 2 00} +test clock-3.640 {ISO week-based calendar 2041-W01-6} { + clock format 2240956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-6 +} {Sat Saturday 41 2041 6 00 01 6 00} +test clock-3.641 {ISO week-based calendar 2041-W01-7} { + clock format 2241043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W01-7 +} {Sun Sunday 41 2041 7 01 01 0 00} +test clock-3.642 {ISO week-based calendar 2041-W02-1} { + clock format 2241129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W02-1 +} {Mon Monday 41 2041 1 01 02 1 01} +test clock-3.643 {ISO week-based calendar 2041-W52-1} { + clock format 2271369600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W52-1 +} {Mon Monday 41 2041 1 51 52 1 51} +test clock-3.644 {ISO week-based calendar 2041-W52-6} { + clock format 2271801600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W52-6 +} {Sat Saturday 41 2041 6 51 52 6 51} +test clock-3.645 {ISO week-based calendar 2041-W52-7} { + clock format 2271888000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2041-W52-7 +} {Sun Sunday 41 2041 7 52 52 0 51} +test clock-3.646 {ISO week-based calendar 2042-W01-1} { + clock format 2271974400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-1 +} {Mon Monday 42 2042 1 52 01 1 52} +test clock-3.647 {ISO week-based calendar 2042-W01-3} { + clock format 2272147200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-3 +} {Wed Wednesday 42 2042 3 00 01 3 00} +test clock-3.648 {ISO week-based calendar 2042-W01-6} { + clock format 2272406400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-6 +} {Sat Saturday 42 2042 6 00 01 6 00} +test clock-3.649 {ISO week-based calendar 2042-W01-7} { + clock format 2272492800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W01-7 +} {Sun Sunday 42 2042 7 01 01 0 00} +test clock-3.650 {ISO week-based calendar 2042-W02-1} { + clock format 2272579200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W02-1 +} {Mon Monday 42 2042 1 01 02 1 01} +test clock-3.651 {ISO week-based calendar 2042-W52-1} { + clock format 2302819200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W52-1 +} {Mon Monday 42 2042 1 51 52 1 51} +test clock-3.652 {ISO week-based calendar 2042-W52-6} { + clock format 2303251200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W52-6 +} {Sat Saturday 42 2042 6 51 52 6 51} +test clock-3.653 {ISO week-based calendar 2042-W52-7} { + clock format 2303337600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2042-W52-7 +} {Sun Sunday 42 2042 7 52 52 0 51} +test clock-3.654 {ISO week-based calendar 2043-W01-1} { + clock format 2303424000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-1 +} {Mon Monday 43 2043 1 52 01 1 52} +test clock-3.655 {ISO week-based calendar 2043-W01-4} { + clock format 2303683200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-4 +} {Thu Thursday 43 2043 4 00 01 4 00} +test clock-3.656 {ISO week-based calendar 2043-W01-6} { + clock format 2303856000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-6 +} {Sat Saturday 43 2043 6 00 01 6 00} +test clock-3.657 {ISO week-based calendar 2043-W01-7} { + clock format 2303942400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W01-7 +} {Sun Sunday 43 2043 7 01 01 0 00} +test clock-3.658 {ISO week-based calendar 2043-W02-1} { + clock format 2304028800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W02-1 +} {Mon Monday 43 2043 1 01 02 1 01} +test clock-3.659 {ISO week-based calendar 2043-W53-1} { + clock format 2334873600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-1 +} {Mon Monday 43 2043 1 52 53 1 52} +test clock-3.660 {ISO week-based calendar 2043-W53-5} { + clock format 2335219200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-5 +} {Fri Friday 43 2043 5 00 53 5 00} +test clock-3.661 {ISO week-based calendar 2043-W53-6} { + clock format 2335305600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-6 +} {Sat Saturday 43 2043 6 00 53 6 00} +test clock-3.662 {ISO week-based calendar 2043-W53-7} { + clock format 2335392000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2043-W53-7 +} {Sun Sunday 43 2043 7 01 53 0 00} +test clock-3.663 {ISO week-based calendar 2044-W01-1} { + clock format 2335478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W01-1 +} {Mon Monday 44 2044 1 01 01 1 01} +test clock-3.664 {ISO week-based calendar 2044-W01-6} { + clock format 2335910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W01-6 +} {Sat Saturday 44 2044 6 01 01 6 01} +test clock-3.665 {ISO week-based calendar 2044-W01-7} { + clock format 2335996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W01-7 +} {Sun Sunday 44 2044 7 02 01 0 01} +test clock-3.666 {ISO week-based calendar 2044-W02-1} { + clock format 2336083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W02-1 +} {Mon Monday 44 2044 1 02 02 1 02} +test clock-3.667 {ISO week-based calendar 2044-W52-1} { + clock format 2366323200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W52-1 +} {Mon Monday 44 2044 1 52 52 1 52} +test clock-3.668 {ISO week-based calendar 2044-W52-6} { + clock format 2366755200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W52-6 +} {Sat Saturday 44 2044 6 52 52 6 52} +test clock-3.669 {ISO week-based calendar 2044-W52-7} { + clock format 2366841600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2044-W52-7 +} {Sun Sunday 44 2044 7 01 52 0 00} +test clock-3.670 {ISO week-based calendar 2045-W01-1} { + clock format 2366928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W01-1 +} {Mon Monday 45 2045 1 01 01 1 01} +test clock-3.671 {ISO week-based calendar 2045-W01-6} { + clock format 2367360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W01-6 +} {Sat Saturday 45 2045 6 01 01 6 01} +test clock-3.672 {ISO week-based calendar 2045-W01-7} { + clock format 2367446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W01-7 +} {Sun Sunday 45 2045 7 02 01 0 01} +test clock-3.673 {ISO week-based calendar 2045-W02-1} { + clock format 2367532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W02-1 +} {Mon Monday 45 2045 1 02 02 1 02} +test clock-3.674 {ISO week-based calendar 2045-W52-1} { + clock format 2397772800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W52-1 +} {Mon Monday 45 2045 1 52 52 1 52} +test clock-3.675 {ISO week-based calendar 2045-W52-6} { + clock format 2398204800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W52-6 +} {Sat Saturday 45 2045 6 52 52 6 52} +test clock-3.676 {ISO week-based calendar 2045-W52-7} { + clock format 2398291200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2045-W52-7 +} {Sun Sunday 45 2045 7 53 52 0 52} +test clock-3.677 {ISO week-based calendar 2046-W01-1} { + clock format 2398377600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W01-1 +} {Mon Monday 46 2046 1 00 01 1 01} +test clock-3.678 {ISO week-based calendar 2046-W01-6} { + clock format 2398809600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W01-6 +} {Sat Saturday 46 2046 6 00 01 6 01} +test clock-3.679 {ISO week-based calendar 2046-W01-7} { + clock format 2398896000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W01-7 +} {Sun Sunday 46 2046 7 01 01 0 01} +test clock-3.680 {ISO week-based calendar 2046-W02-1} { + clock format 2398982400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W02-1 +} {Mon Monday 46 2046 1 01 02 1 02} +test clock-3.681 {ISO week-based calendar 2046-W52-1} { + clock format 2429222400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W52-1 +} {Mon Monday 46 2046 1 51 52 1 52} +test clock-3.682 {ISO week-based calendar 2046-W52-6} { + clock format 2429654400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W52-6 +} {Sat Saturday 46 2046 6 51 52 6 52} +test clock-3.683 {ISO week-based calendar 2046-W52-7} { + clock format 2429740800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2046-W52-7 +} {Sun Sunday 46 2046 7 52 52 0 52} +test clock-3.684 {ISO week-based calendar 2047-W01-1} { + clock format 2429827200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-1 +} {Mon Monday 47 2047 1 52 01 1 53} +test clock-3.685 {ISO week-based calendar 2047-W01-2} { + clock format 2429913600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-2 +} {Tue Tuesday 47 2047 2 00 01 2 00} +test clock-3.686 {ISO week-based calendar 2047-W01-6} { + clock format 2430259200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-6 +} {Sat Saturday 47 2047 6 00 01 6 00} +test clock-3.687 {ISO week-based calendar 2047-W01-7} { + clock format 2430345600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W01-7 +} {Sun Sunday 47 2047 7 01 01 0 00} +test clock-3.688 {ISO week-based calendar 2047-W02-1} { + clock format 2430432000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W02-1 +} {Mon Monday 47 2047 1 01 02 1 01} +test clock-3.689 {ISO week-based calendar 2047-W52-1} { + clock format 2460672000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W52-1 +} {Mon Monday 47 2047 1 51 52 1 51} +test clock-3.690 {ISO week-based calendar 2047-W52-6} { + clock format 2461104000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W52-6 +} {Sat Saturday 47 2047 6 51 52 6 51} +test clock-3.691 {ISO week-based calendar 2047-W52-7} { + clock format 2461190400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2047-W52-7 +} {Sun Sunday 47 2047 7 52 52 0 51} +test clock-3.692 {ISO week-based calendar 2048-W01-1} { + clock format 2461276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-1 +} {Mon Monday 48 2048 1 52 01 1 52} +test clock-3.693 {ISO week-based calendar 2048-W01-3} { + clock format 2461449600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-3 +} {Wed Wednesday 48 2048 3 00 01 3 00} +test clock-3.694 {ISO week-based calendar 2048-W01-6} { + clock format 2461708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-6 +} {Sat Saturday 48 2048 6 00 01 6 00} +test clock-3.695 {ISO week-based calendar 2048-W01-7} { + clock format 2461795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W01-7 +} {Sun Sunday 48 2048 7 01 01 0 00} +test clock-3.696 {ISO week-based calendar 2048-W02-1} { + clock format 2461881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W02-1 +} {Mon Monday 48 2048 1 01 02 1 01} +test clock-3.697 {ISO week-based calendar 2048-W53-1} { + clock format 2492726400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-1 +} {Mon Monday 48 2048 1 52 53 1 52} +test clock-3.698 {ISO week-based calendar 2048-W53-5} { + clock format 2493072000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-5 +} {Fri Friday 48 2048 5 00 53 5 00} +test clock-3.699 {ISO week-based calendar 2048-W53-6} { + clock format 2493158400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-6 +} {Sat Saturday 48 2048 6 00 53 6 00} +test clock-3.700 {ISO week-based calendar 2048-W53-7} { + clock format 2493244800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2048-W53-7 +} {Sun Sunday 48 2048 7 01 53 0 00} +test clock-3.701 {ISO week-based calendar 2049-W01-1} { + clock format 2493331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W01-1 +} {Mon Monday 49 2049 1 01 01 1 01} +test clock-3.702 {ISO week-based calendar 2049-W01-6} { + clock format 2493763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W01-6 +} {Sat Saturday 49 2049 6 01 01 6 01} +test clock-3.703 {ISO week-based calendar 2049-W01-7} { + clock format 2493849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W01-7 +} {Sun Sunday 49 2049 7 02 01 0 01} +test clock-3.704 {ISO week-based calendar 2049-W02-1} { + clock format 2493936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2049-W02-1 +} {Mon Monday 49 2049 1 02 02 1 02} +test clock-3.705 {ISO week-based calendar 2051-W52-1} { + clock format 2587075200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2051-W52-1 +} {Mon Monday 51 2051 1 52 52 1 52} +test clock-3.706 {ISO week-based calendar 2051-W52-6} { + clock format 2587507200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2051-W52-6 +} {Sat Saturday 51 2051 6 52 52 6 52} +test clock-3.707 {ISO week-based calendar 2051-W52-7} { + clock format 2587593600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2051-W52-7 +} {Sun Sunday 51 2051 7 53 52 0 52} +test clock-3.708 {ISO week-based calendar 2052-W01-1} { + clock format 2587680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W01-1 +} {Mon Monday 52 2052 1 00 01 1 01} +test clock-3.709 {ISO week-based calendar 2052-W01-6} { + clock format 2588112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W01-6 +} {Sat Saturday 52 2052 6 00 01 6 01} +test clock-3.710 {ISO week-based calendar 2052-W01-7} { + clock format 2588198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W01-7 +} {Sun Sunday 52 2052 7 01 01 0 01} +test clock-3.711 {ISO week-based calendar 2052-W02-1} { + clock format 2588284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W02-1 +} {Mon Monday 52 2052 1 01 02 1 02} +test clock-3.712 {ISO week-based calendar 2052-W52-1} { + clock format 2618524800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W52-1 +} {Mon Monday 52 2052 1 51 52 1 52} +test clock-3.713 {ISO week-based calendar 2052-W52-6} { + clock format 2618956800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W52-6 +} {Sat Saturday 52 2052 6 51 52 6 52} +test clock-3.714 {ISO week-based calendar 2052-W52-7} { + clock format 2619043200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2052-W52-7 +} {Sun Sunday 52 2052 7 52 52 0 52} +test clock-3.715 {ISO week-based calendar 2053-W01-1} { + clock format 2619129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-1 +} {Mon Monday 53 2053 1 52 01 1 53} +test clock-3.716 {ISO week-based calendar 2053-W01-3} { + clock format 2619302400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-3 +} {Wed Wednesday 53 2053 3 00 01 3 00} +test clock-3.717 {ISO week-based calendar 2053-W01-6} { + clock format 2619561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-6 +} {Sat Saturday 53 2053 6 00 01 6 00} +test clock-3.718 {ISO week-based calendar 2053-W01-7} { + clock format 2619648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W01-7 +} {Sun Sunday 53 2053 7 01 01 0 00} +test clock-3.719 {ISO week-based calendar 2053-W02-1} { + clock format 2619734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2053-W02-1 +} {Mon Monday 53 2053 1 01 02 1 01} +test clock-3.720 {ISO week-based calendar 2055-W52-1} { + clock format 2713478400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2055-W52-1 +} {Mon Monday 55 2055 1 52 52 1 52} +test clock-3.721 {ISO week-based calendar 2055-W52-6} { + clock format 2713910400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2055-W52-6 +} {Sat Saturday 55 2055 6 00 52 6 00} +test clock-3.722 {ISO week-based calendar 2055-W52-7} { + clock format 2713996800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2055-W52-7 +} {Sun Sunday 55 2055 7 01 52 0 00} +test clock-3.723 {ISO week-based calendar 2056-W01-1} { + clock format 2714083200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W01-1 +} {Mon Monday 56 2056 1 01 01 1 01} +test clock-3.724 {ISO week-based calendar 2056-W01-6} { + clock format 2714515200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W01-6 +} {Sat Saturday 56 2056 6 01 01 6 01} +test clock-3.725 {ISO week-based calendar 2056-W01-7} { + clock format 2714601600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W01-7 +} {Sun Sunday 56 2056 7 02 01 0 01} +test clock-3.726 {ISO week-based calendar 2056-W02-1} { + clock format 2714688000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W02-1 +} {Mon Monday 56 2056 1 02 02 1 02} +test clock-3.727 {ISO week-based calendar 2056-W52-1} { + clock format 2744928000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W52-1 +} {Mon Monday 56 2056 1 52 52 1 52} +test clock-3.728 {ISO week-based calendar 2056-W52-6} { + clock format 2745360000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W52-6 +} {Sat Saturday 56 2056 6 52 52 6 52} +test clock-3.729 {ISO week-based calendar 2056-W52-7} { + clock format 2745446400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2056-W52-7 +} {Sun Sunday 56 2056 7 53 52 0 52} +test clock-3.730 {ISO week-based calendar 2057-W01-1} { + clock format 2745532800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W01-1 +} {Mon Monday 57 2057 1 00 01 1 01} +test clock-3.731 {ISO week-based calendar 2057-W01-6} { + clock format 2745964800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W01-6 +} {Sat Saturday 57 2057 6 00 01 6 01} +test clock-3.732 {ISO week-based calendar 2057-W01-7} { + clock format 2746051200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W01-7 +} {Sun Sunday 57 2057 7 01 01 0 01} +test clock-3.733 {ISO week-based calendar 2057-W02-1} { + clock format 2746137600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2057-W02-1 +} {Mon Monday 57 2057 1 01 02 1 02} +test clock-3.734 {ISO week-based calendar 2059-W52-1} { + clock format 2839276800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2059-W52-1 +} {Mon Monday 59 2059 1 51 52 1 51} +test clock-3.735 {ISO week-based calendar 2059-W52-6} { + clock format 2839708800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2059-W52-6 +} {Sat Saturday 59 2059 6 51 52 6 51} +test clock-3.736 {ISO week-based calendar 2059-W52-7} { + clock format 2839795200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2059-W52-7 +} {Sun Sunday 59 2059 7 52 52 0 51} +test clock-3.737 {ISO week-based calendar 2060-W01-1} { + clock format 2839881600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-1 +} {Mon Monday 60 2060 1 52 01 1 52} +test clock-3.738 {ISO week-based calendar 2060-W01-4} { + clock format 2840140800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-4 +} {Thu Thursday 60 2060 4 00 01 4 00} +test clock-3.739 {ISO week-based calendar 2060-W01-6} { + clock format 2840313600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-6 +} {Sat Saturday 60 2060 6 00 01 6 00} +test clock-3.740 {ISO week-based calendar 2060-W01-7} { + clock format 2840400000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W01-7 +} {Sun Sunday 60 2060 7 01 01 0 00} +test clock-3.741 {ISO week-based calendar 2060-W02-1} { + clock format 2840486400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W02-1 +} {Mon Monday 60 2060 1 01 02 1 01} +test clock-3.742 {ISO week-based calendar 2060-W53-1} { + clock format 2871331200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W53-1 +} {Mon Monday 60 2060 1 52 53 1 52} +test clock-3.743 {ISO week-based calendar 2060-W53-6} { + clock format 2871763200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W53-6 +} {Sat Saturday 60 2060 6 00 53 6 00} +test clock-3.744 {ISO week-based calendar 2060-W53-7} { + clock format 2871849600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2060-W53-7 +} {Sun Sunday 60 2060 7 01 53 0 00} +test clock-3.745 {ISO week-based calendar 2061-W01-1} { + clock format 2871936000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W01-1 +} {Mon Monday 61 2061 1 01 01 1 01} +test clock-3.746 {ISO week-based calendar 2061-W01-6} { + clock format 2872368000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W01-6 +} {Sat Saturday 61 2061 6 01 01 6 01} +test clock-3.747 {ISO week-based calendar 2061-W01-7} { + clock format 2872454400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W01-7 +} {Sun Sunday 61 2061 7 02 01 0 01} +test clock-3.748 {ISO week-based calendar 2061-W02-1} { + clock format 2872540800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2061-W02-1 +} {Mon Monday 61 2061 1 02 02 1 02} +test clock-3.749 {ISO week-based calendar 2063-W52-1} { + clock format 2965680000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2063-W52-1 +} {Mon Monday 63 2063 1 51 52 1 52} +test clock-3.750 {ISO week-based calendar 2063-W52-6} { + clock format 2966112000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2063-W52-6 +} {Sat Saturday 63 2063 6 51 52 6 52} +test clock-3.751 {ISO week-based calendar 2063-W52-7} { + clock format 2966198400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2063-W52-7 +} {Sun Sunday 63 2063 7 52 52 0 52} +test clock-3.752 {ISO week-based calendar 2064-W01-1} { + clock format 2966284800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-1 +} {Mon Monday 64 2064 1 52 01 1 53} +test clock-3.753 {ISO week-based calendar 2064-W01-2} { + clock format 2966371200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-2 +} {Tue Tuesday 64 2064 2 00 01 2 00} +test clock-3.754 {ISO week-based calendar 2064-W01-6} { + clock format 2966716800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-6 +} {Sat Saturday 64 2064 6 00 01 6 00} +test clock-3.755 {ISO week-based calendar 2064-W01-7} { + clock format 2966803200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W01-7 +} {Sun Sunday 64 2064 7 01 01 0 00} +test clock-3.756 {ISO week-based calendar 2064-W02-1} { + clock format 2966889600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W02-1 +} {Mon Monday 64 2064 1 01 02 1 01} +test clock-3.757 {ISO week-based calendar 2064-W52-1} { + clock format 2997129600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W52-1 +} {Mon Monday 64 2064 1 51 52 1 51} +test clock-3.758 {ISO week-based calendar 2064-W52-6} { + clock format 2997561600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W52-6 +} {Sat Saturday 64 2064 6 51 52 6 51} +test clock-3.759 {ISO week-based calendar 2064-W52-7} { + clock format 2997648000 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2064-W52-7 +} {Sun Sunday 64 2064 7 52 52 0 51} +test clock-3.760 {ISO week-based calendar 2065-W01-1} { + clock format 2997734400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-1 +} {Mon Monday 65 2065 1 52 01 1 52} +test clock-3.761 {ISO week-based calendar 2065-W01-4} { + clock format 2997993600 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-4 +} {Thu Thursday 65 2065 4 00 01 4 00} +test clock-3.762 {ISO week-based calendar 2065-W01-6} { + clock format 2998166400 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-6 +} {Sat Saturday 65 2065 6 00 01 6 00} +test clock-3.763 {ISO week-based calendar 2065-W01-7} { + clock format 2998252800 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W01-7 +} {Sun Sunday 65 2065 7 01 01 0 00} +test clock-3.764 {ISO week-based calendar 2065-W02-1} { + clock format 2998339200 -format {%a %A %g %G %u %U %V %w %W} -gmt true; # 2065-W02-1 +} {Mon Monday 65 2065 1 01 02 1 01} # END testcases3 # BEGIN testcases4 @@ -14774,17 +15297,14 @@ test clock-4.96 { format time of day 23:59:59 } { # Test formatting of Daylight Saving Time -::tcltest::testConstraint detroit 0 test clock-5.1 {does Detroit exist} { clock format 0 -format {} -timezone :America/Detroit - ::tcltest::testConstraint detroit 1 concat } {} test clock-5.2 {does Detroit have a Y2038 problem} detroit { if { [clock format 2158894800 -format %z -timezone :America/Detroit] ne {-0400} } { concat {y2038 problem} } else { - ::tcltest::testConstraint y2038 1 concat {ok} } } ok @@ -15760,2236 +16280,2236 @@ test clock-5.245 {time zone boundary case 2006-10-29 01:00:01} detroit { clock format 1162101601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.246 {time zone boundary case 2007-04-01 01:59:59} detroit { - clock format 1175410799 -format {%H:%M:%S %z %Z} \ +test clock-5.246 {time zone boundary case 2007-03-11 01:59:59} detroit { + clock format 1173596399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.247 {time zone boundary case 2007-04-01 03:00:00} detroit { - clock format 1175410800 -format {%H:%M:%S %z %Z} \ +test clock-5.247 {time zone boundary case 2007-03-11 03:00:00} detroit { + clock format 1173596400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.248 {time zone boundary case 2007-04-01 03:00:01} detroit { - clock format 1175410801 -format {%H:%M:%S %z %Z} \ +test clock-5.248 {time zone boundary case 2007-03-11 03:00:01} detroit { + clock format 1173596401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.249 {time zone boundary case 2007-10-28 01:59:59} detroit { - clock format 1193551199 -format {%H:%M:%S %z %Z} \ +test clock-5.249 {time zone boundary case 2007-11-04 01:59:59} detroit { + clock format 1194155999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.250 {time zone boundary case 2007-10-28 01:00:00} detroit { - clock format 1193551200 -format {%H:%M:%S %z %Z} \ +test clock-5.250 {time zone boundary case 2007-11-04 01:00:00} detroit { + clock format 1194156000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.251 {time zone boundary case 2007-10-28 01:00:01} detroit { - clock format 1193551201 -format {%H:%M:%S %z %Z} \ +test clock-5.251 {time zone boundary case 2007-11-04 01:00:01} detroit { + clock format 1194156001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.252 {time zone boundary case 2008-04-06 01:59:59} detroit { - clock format 1207465199 -format {%H:%M:%S %z %Z} \ +test clock-5.252 {time zone boundary case 2008-03-09 01:59:59} detroit { + clock format 1205045999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.253 {time zone boundary case 2008-04-06 03:00:00} detroit { - clock format 1207465200 -format {%H:%M:%S %z %Z} \ +test clock-5.253 {time zone boundary case 2008-03-09 03:00:00} detroit { + clock format 1205046000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.254 {time zone boundary case 2008-04-06 03:00:01} detroit { - clock format 1207465201 -format {%H:%M:%S %z %Z} \ +test clock-5.254 {time zone boundary case 2008-03-09 03:00:01} detroit { + clock format 1205046001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.255 {time zone boundary case 2008-10-26 01:59:59} detroit { - clock format 1225000799 -format {%H:%M:%S %z %Z} \ +test clock-5.255 {time zone boundary case 2008-11-02 01:59:59} detroit { + clock format 1225605599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.256 {time zone boundary case 2008-10-26 01:00:00} detroit { - clock format 1225000800 -format {%H:%M:%S %z %Z} \ +test clock-5.256 {time zone boundary case 2008-11-02 01:00:00} detroit { + clock format 1225605600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.257 {time zone boundary case 2008-10-26 01:00:01} detroit { - clock format 1225000801 -format {%H:%M:%S %z %Z} \ +test clock-5.257 {time zone boundary case 2008-11-02 01:00:01} detroit { + clock format 1225605601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.258 {time zone boundary case 2009-04-05 01:59:59} detroit { - clock format 1238914799 -format {%H:%M:%S %z %Z} \ +test clock-5.258 {time zone boundary case 2009-03-08 01:59:59} detroit { + clock format 1236495599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.259 {time zone boundary case 2009-04-05 03:00:00} detroit { - clock format 1238914800 -format {%H:%M:%S %z %Z} \ +test clock-5.259 {time zone boundary case 2009-03-08 03:00:00} detroit { + clock format 1236495600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.260 {time zone boundary case 2009-04-05 03:00:01} detroit { - clock format 1238914801 -format {%H:%M:%S %z %Z} \ +test clock-5.260 {time zone boundary case 2009-03-08 03:00:01} detroit { + clock format 1236495601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.261 {time zone boundary case 2009-10-25 01:59:59} detroit { - clock format 1256450399 -format {%H:%M:%S %z %Z} \ +test clock-5.261 {time zone boundary case 2009-11-01 01:59:59} detroit { + clock format 1257055199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.262 {time zone boundary case 2009-10-25 01:00:00} detroit { - clock format 1256450400 -format {%H:%M:%S %z %Z} \ +test clock-5.262 {time zone boundary case 2009-11-01 01:00:00} detroit { + clock format 1257055200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.263 {time zone boundary case 2009-10-25 01:00:01} detroit { - clock format 1256450401 -format {%H:%M:%S %z %Z} \ +test clock-5.263 {time zone boundary case 2009-11-01 01:00:01} detroit { + clock format 1257055201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.264 {time zone boundary case 2010-04-04 01:59:59} detroit { - clock format 1270364399 -format {%H:%M:%S %z %Z} \ +test clock-5.264 {time zone boundary case 2010-03-14 01:59:59} detroit { + clock format 1268549999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.265 {time zone boundary case 2010-04-04 03:00:00} detroit { - clock format 1270364400 -format {%H:%M:%S %z %Z} \ +test clock-5.265 {time zone boundary case 2010-03-14 03:00:00} detroit { + clock format 1268550000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.266 {time zone boundary case 2010-04-04 03:00:01} detroit { - clock format 1270364401 -format {%H:%M:%S %z %Z} \ +test clock-5.266 {time zone boundary case 2010-03-14 03:00:01} detroit { + clock format 1268550001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.267 {time zone boundary case 2010-10-31 01:59:59} detroit { - clock format 1288504799 -format {%H:%M:%S %z %Z} \ +test clock-5.267 {time zone boundary case 2010-11-07 01:59:59} detroit { + clock format 1289109599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.268 {time zone boundary case 2010-10-31 01:00:00} detroit { - clock format 1288504800 -format {%H:%M:%S %z %Z} \ +test clock-5.268 {time zone boundary case 2010-11-07 01:00:00} detroit { + clock format 1289109600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.269 {time zone boundary case 2010-10-31 01:00:01} detroit { - clock format 1288504801 -format {%H:%M:%S %z %Z} \ +test clock-5.269 {time zone boundary case 2010-11-07 01:00:01} detroit { + clock format 1289109601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.270 {time zone boundary case 2011-04-03 01:59:59} detroit { - clock format 1301813999 -format {%H:%M:%S %z %Z} \ +test clock-5.270 {time zone boundary case 2011-03-13 01:59:59} detroit { + clock format 1299999599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.271 {time zone boundary case 2011-04-03 03:00:00} detroit { - clock format 1301814000 -format {%H:%M:%S %z %Z} \ +test clock-5.271 {time zone boundary case 2011-03-13 03:00:00} detroit { + clock format 1299999600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.272 {time zone boundary case 2011-04-03 03:00:01} detroit { - clock format 1301814001 -format {%H:%M:%S %z %Z} \ +test clock-5.272 {time zone boundary case 2011-03-13 03:00:01} detroit { + clock format 1299999601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.273 {time zone boundary case 2011-10-30 01:59:59} detroit { - clock format 1319954399 -format {%H:%M:%S %z %Z} \ +test clock-5.273 {time zone boundary case 2011-11-06 01:59:59} detroit { + clock format 1320559199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.274 {time zone boundary case 2011-10-30 01:00:00} detroit { - clock format 1319954400 -format {%H:%M:%S %z %Z} \ +test clock-5.274 {time zone boundary case 2011-11-06 01:00:00} detroit { + clock format 1320559200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.275 {time zone boundary case 2011-10-30 01:00:01} detroit { - clock format 1319954401 -format {%H:%M:%S %z %Z} \ +test clock-5.275 {time zone boundary case 2011-11-06 01:00:01} detroit { + clock format 1320559201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.276 {time zone boundary case 2012-04-01 01:59:59} detroit { - clock format 1333263599 -format {%H:%M:%S %z %Z} \ +test clock-5.276 {time zone boundary case 2012-03-11 01:59:59} detroit { + clock format 1331449199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.277 {time zone boundary case 2012-04-01 03:00:00} detroit { - clock format 1333263600 -format {%H:%M:%S %z %Z} \ +test clock-5.277 {time zone boundary case 2012-03-11 03:00:00} detroit { + clock format 1331449200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.278 {time zone boundary case 2012-04-01 03:00:01} detroit { - clock format 1333263601 -format {%H:%M:%S %z %Z} \ +test clock-5.278 {time zone boundary case 2012-03-11 03:00:01} detroit { + clock format 1331449201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.279 {time zone boundary case 2012-10-28 01:59:59} detroit { - clock format 1351403999 -format {%H:%M:%S %z %Z} \ +test clock-5.279 {time zone boundary case 2012-11-04 01:59:59} detroit { + clock format 1352008799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.280 {time zone boundary case 2012-10-28 01:00:00} detroit { - clock format 1351404000 -format {%H:%M:%S %z %Z} \ +test clock-5.280 {time zone boundary case 2012-11-04 01:00:00} detroit { + clock format 1352008800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.281 {time zone boundary case 2012-10-28 01:00:01} detroit { - clock format 1351404001 -format {%H:%M:%S %z %Z} \ +test clock-5.281 {time zone boundary case 2012-11-04 01:00:01} detroit { + clock format 1352008801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.282 {time zone boundary case 2013-04-07 01:59:59} detroit { - clock format 1365317999 -format {%H:%M:%S %z %Z} \ +test clock-5.282 {time zone boundary case 2013-03-10 01:59:59} detroit { + clock format 1362898799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.283 {time zone boundary case 2013-04-07 03:00:00} detroit { - clock format 1365318000 -format {%H:%M:%S %z %Z} \ +test clock-5.283 {time zone boundary case 2013-03-10 03:00:00} detroit { + clock format 1362898800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.284 {time zone boundary case 2013-04-07 03:00:01} detroit { - clock format 1365318001 -format {%H:%M:%S %z %Z} \ +test clock-5.284 {time zone boundary case 2013-03-10 03:00:01} detroit { + clock format 1362898801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.285 {time zone boundary case 2013-10-27 01:59:59} detroit { - clock format 1382853599 -format {%H:%M:%S %z %Z} \ +test clock-5.285 {time zone boundary case 2013-11-03 01:59:59} detroit { + clock format 1383458399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.286 {time zone boundary case 2013-10-27 01:00:00} detroit { - clock format 1382853600 -format {%H:%M:%S %z %Z} \ +test clock-5.286 {time zone boundary case 2013-11-03 01:00:00} detroit { + clock format 1383458400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.287 {time zone boundary case 2013-10-27 01:00:01} detroit { - clock format 1382853601 -format {%H:%M:%S %z %Z} \ +test clock-5.287 {time zone boundary case 2013-11-03 01:00:01} detroit { + clock format 1383458401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.288 {time zone boundary case 2014-04-06 01:59:59} detroit { - clock format 1396767599 -format {%H:%M:%S %z %Z} \ +test clock-5.288 {time zone boundary case 2014-03-09 01:59:59} detroit { + clock format 1394348399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.289 {time zone boundary case 2014-04-06 03:00:00} detroit { - clock format 1396767600 -format {%H:%M:%S %z %Z} \ +test clock-5.289 {time zone boundary case 2014-03-09 03:00:00} detroit { + clock format 1394348400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.290 {time zone boundary case 2014-04-06 03:00:01} detroit { - clock format 1396767601 -format {%H:%M:%S %z %Z} \ +test clock-5.290 {time zone boundary case 2014-03-09 03:00:01} detroit { + clock format 1394348401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.291 {time zone boundary case 2014-10-26 01:59:59} detroit { - clock format 1414303199 -format {%H:%M:%S %z %Z} \ +test clock-5.291 {time zone boundary case 2014-11-02 01:59:59} detroit { + clock format 1414907999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.292 {time zone boundary case 2014-10-26 01:00:00} detroit { - clock format 1414303200 -format {%H:%M:%S %z %Z} \ +test clock-5.292 {time zone boundary case 2014-11-02 01:00:00} detroit { + clock format 1414908000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.293 {time zone boundary case 2014-10-26 01:00:01} detroit { - clock format 1414303201 -format {%H:%M:%S %z %Z} \ +test clock-5.293 {time zone boundary case 2014-11-02 01:00:01} detroit { + clock format 1414908001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.294 {time zone boundary case 2015-04-05 01:59:59} detroit { - clock format 1428217199 -format {%H:%M:%S %z %Z} \ +test clock-5.294 {time zone boundary case 2015-03-08 01:59:59} detroit { + clock format 1425797999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.295 {time zone boundary case 2015-04-05 03:00:00} detroit { - clock format 1428217200 -format {%H:%M:%S %z %Z} \ +test clock-5.295 {time zone boundary case 2015-03-08 03:00:00} detroit { + clock format 1425798000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.296 {time zone boundary case 2015-04-05 03:00:01} detroit { - clock format 1428217201 -format {%H:%M:%S %z %Z} \ +test clock-5.296 {time zone boundary case 2015-03-08 03:00:01} detroit { + clock format 1425798001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.297 {time zone boundary case 2015-10-25 01:59:59} detroit { - clock format 1445752799 -format {%H:%M:%S %z %Z} \ +test clock-5.297 {time zone boundary case 2015-11-01 01:59:59} detroit { + clock format 1446357599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.298 {time zone boundary case 2015-10-25 01:00:00} detroit { - clock format 1445752800 -format {%H:%M:%S %z %Z} \ +test clock-5.298 {time zone boundary case 2015-11-01 01:00:00} detroit { + clock format 1446357600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.299 {time zone boundary case 2015-10-25 01:00:01} detroit { - clock format 1445752801 -format {%H:%M:%S %z %Z} \ +test clock-5.299 {time zone boundary case 2015-11-01 01:00:01} detroit { + clock format 1446357601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.300 {time zone boundary case 2016-04-03 01:59:59} detroit { - clock format 1459666799 -format {%H:%M:%S %z %Z} \ +test clock-5.300 {time zone boundary case 2016-03-13 01:59:59} detroit { + clock format 1457852399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.301 {time zone boundary case 2016-04-03 03:00:00} detroit { - clock format 1459666800 -format {%H:%M:%S %z %Z} \ +test clock-5.301 {time zone boundary case 2016-03-13 03:00:00} detroit { + clock format 1457852400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.302 {time zone boundary case 2016-04-03 03:00:01} detroit { - clock format 1459666801 -format {%H:%M:%S %z %Z} \ +test clock-5.302 {time zone boundary case 2016-03-13 03:00:01} detroit { + clock format 1457852401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.303 {time zone boundary case 2016-10-30 01:59:59} detroit { - clock format 1477807199 -format {%H:%M:%S %z %Z} \ +test clock-5.303 {time zone boundary case 2016-11-06 01:59:59} detroit { + clock format 1478411999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.304 {time zone boundary case 2016-10-30 01:00:00} detroit { - clock format 1477807200 -format {%H:%M:%S %z %Z} \ +test clock-5.304 {time zone boundary case 2016-11-06 01:00:00} detroit { + clock format 1478412000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.305 {time zone boundary case 2016-10-30 01:00:01} detroit { - clock format 1477807201 -format {%H:%M:%S %z %Z} \ +test clock-5.305 {time zone boundary case 2016-11-06 01:00:01} detroit { + clock format 1478412001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.306 {time zone boundary case 2017-04-02 01:59:59} detroit { - clock format 1491116399 -format {%H:%M:%S %z %Z} \ +test clock-5.306 {time zone boundary case 2017-03-12 01:59:59} detroit { + clock format 1489301999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.307 {time zone boundary case 2017-04-02 03:00:00} detroit { - clock format 1491116400 -format {%H:%M:%S %z %Z} \ +test clock-5.307 {time zone boundary case 2017-03-12 03:00:00} detroit { + clock format 1489302000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.308 {time zone boundary case 2017-04-02 03:00:01} detroit { - clock format 1491116401 -format {%H:%M:%S %z %Z} \ +test clock-5.308 {time zone boundary case 2017-03-12 03:00:01} detroit { + clock format 1489302001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.309 {time zone boundary case 2017-10-29 01:59:59} detroit { - clock format 1509256799 -format {%H:%M:%S %z %Z} \ +test clock-5.309 {time zone boundary case 2017-11-05 01:59:59} detroit { + clock format 1509861599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.310 {time zone boundary case 2017-10-29 01:00:00} detroit { - clock format 1509256800 -format {%H:%M:%S %z %Z} \ +test clock-5.310 {time zone boundary case 2017-11-05 01:00:00} detroit { + clock format 1509861600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.311 {time zone boundary case 2017-10-29 01:00:01} detroit { - clock format 1509256801 -format {%H:%M:%S %z %Z} \ +test clock-5.311 {time zone boundary case 2017-11-05 01:00:01} detroit { + clock format 1509861601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.312 {time zone boundary case 2018-04-01 01:59:59} detroit { - clock format 1522565999 -format {%H:%M:%S %z %Z} \ +test clock-5.312 {time zone boundary case 2018-03-11 01:59:59} detroit { + clock format 1520751599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.313 {time zone boundary case 2018-04-01 03:00:00} detroit { - clock format 1522566000 -format {%H:%M:%S %z %Z} \ +test clock-5.313 {time zone boundary case 2018-03-11 03:00:00} detroit { + clock format 1520751600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.314 {time zone boundary case 2018-04-01 03:00:01} detroit { - clock format 1522566001 -format {%H:%M:%S %z %Z} \ +test clock-5.314 {time zone boundary case 2018-03-11 03:00:01} detroit { + clock format 1520751601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.315 {time zone boundary case 2018-10-28 01:59:59} detroit { - clock format 1540706399 -format {%H:%M:%S %z %Z} \ +test clock-5.315 {time zone boundary case 2018-11-04 01:59:59} detroit { + clock format 1541311199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.316 {time zone boundary case 2018-10-28 01:00:00} detroit { - clock format 1540706400 -format {%H:%M:%S %z %Z} \ +test clock-5.316 {time zone boundary case 2018-11-04 01:00:00} detroit { + clock format 1541311200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.317 {time zone boundary case 2018-10-28 01:00:01} detroit { - clock format 1540706401 -format {%H:%M:%S %z %Z} \ +test clock-5.317 {time zone boundary case 2018-11-04 01:00:01} detroit { + clock format 1541311201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.318 {time zone boundary case 2019-04-07 01:59:59} detroit { - clock format 1554620399 -format {%H:%M:%S %z %Z} \ +test clock-5.318 {time zone boundary case 2019-03-10 01:59:59} detroit { + clock format 1552201199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.319 {time zone boundary case 2019-04-07 03:00:00} detroit { - clock format 1554620400 -format {%H:%M:%S %z %Z} \ +test clock-5.319 {time zone boundary case 2019-03-10 03:00:00} detroit { + clock format 1552201200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.320 {time zone boundary case 2019-04-07 03:00:01} detroit { - clock format 1554620401 -format {%H:%M:%S %z %Z} \ +test clock-5.320 {time zone boundary case 2019-03-10 03:00:01} detroit { + clock format 1552201201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.321 {time zone boundary case 2019-10-27 01:59:59} detroit { - clock format 1572155999 -format {%H:%M:%S %z %Z} \ +test clock-5.321 {time zone boundary case 2019-11-03 01:59:59} detroit { + clock format 1572760799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.322 {time zone boundary case 2019-10-27 01:00:00} detroit { - clock format 1572156000 -format {%H:%M:%S %z %Z} \ +test clock-5.322 {time zone boundary case 2019-11-03 01:00:00} detroit { + clock format 1572760800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.323 {time zone boundary case 2019-10-27 01:00:01} detroit { - clock format 1572156001 -format {%H:%M:%S %z %Z} \ +test clock-5.323 {time zone boundary case 2019-11-03 01:00:01} detroit { + clock format 1572760801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.324 {time zone boundary case 2020-04-05 01:59:59} detroit { - clock format 1586069999 -format {%H:%M:%S %z %Z} \ +test clock-5.324 {time zone boundary case 2020-03-08 01:59:59} detroit { + clock format 1583650799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.325 {time zone boundary case 2020-04-05 03:00:00} detroit { - clock format 1586070000 -format {%H:%M:%S %z %Z} \ +test clock-5.325 {time zone boundary case 2020-03-08 03:00:00} detroit { + clock format 1583650800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.326 {time zone boundary case 2020-04-05 03:00:01} detroit { - clock format 1586070001 -format {%H:%M:%S %z %Z} \ +test clock-5.326 {time zone boundary case 2020-03-08 03:00:01} detroit { + clock format 1583650801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.327 {time zone boundary case 2020-10-25 01:59:59} detroit { - clock format 1603605599 -format {%H:%M:%S %z %Z} \ +test clock-5.327 {time zone boundary case 2020-11-01 01:59:59} detroit { + clock format 1604210399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.328 {time zone boundary case 2020-10-25 01:00:00} detroit { - clock format 1603605600 -format {%H:%M:%S %z %Z} \ +test clock-5.328 {time zone boundary case 2020-11-01 01:00:00} detroit { + clock format 1604210400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.329 {time zone boundary case 2020-10-25 01:00:01} detroit { - clock format 1603605601 -format {%H:%M:%S %z %Z} \ +test clock-5.329 {time zone boundary case 2020-11-01 01:00:01} detroit { + clock format 1604210401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.330 {time zone boundary case 2021-04-04 01:59:59} detroit { - clock format 1617519599 -format {%H:%M:%S %z %Z} \ +test clock-5.330 {time zone boundary case 2021-03-14 01:59:59} detroit { + clock format 1615705199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.331 {time zone boundary case 2021-04-04 03:00:00} detroit { - clock format 1617519600 -format {%H:%M:%S %z %Z} \ +test clock-5.331 {time zone boundary case 2021-03-14 03:00:00} detroit { + clock format 1615705200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.332 {time zone boundary case 2021-04-04 03:00:01} detroit { - clock format 1617519601 -format {%H:%M:%S %z %Z} \ +test clock-5.332 {time zone boundary case 2021-03-14 03:00:01} detroit { + clock format 1615705201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.333 {time zone boundary case 2021-10-31 01:59:59} detroit { - clock format 1635659999 -format {%H:%M:%S %z %Z} \ +test clock-5.333 {time zone boundary case 2021-11-07 01:59:59} detroit { + clock format 1636264799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.334 {time zone boundary case 2021-10-31 01:00:00} detroit { - clock format 1635660000 -format {%H:%M:%S %z %Z} \ +test clock-5.334 {time zone boundary case 2021-11-07 01:00:00} detroit { + clock format 1636264800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.335 {time zone boundary case 2021-10-31 01:00:01} detroit { - clock format 1635660001 -format {%H:%M:%S %z %Z} \ +test clock-5.335 {time zone boundary case 2021-11-07 01:00:01} detroit { + clock format 1636264801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.336 {time zone boundary case 2022-04-03 01:59:59} detroit { - clock format 1648969199 -format {%H:%M:%S %z %Z} \ +test clock-5.336 {time zone boundary case 2022-03-13 01:59:59} detroit { + clock format 1647154799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.337 {time zone boundary case 2022-04-03 03:00:00} detroit { - clock format 1648969200 -format {%H:%M:%S %z %Z} \ +test clock-5.337 {time zone boundary case 2022-03-13 03:00:00} detroit { + clock format 1647154800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.338 {time zone boundary case 2022-04-03 03:00:01} detroit { - clock format 1648969201 -format {%H:%M:%S %z %Z} \ +test clock-5.338 {time zone boundary case 2022-03-13 03:00:01} detroit { + clock format 1647154801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.339 {time zone boundary case 2022-10-30 01:59:59} detroit { - clock format 1667109599 -format {%H:%M:%S %z %Z} \ +test clock-5.339 {time zone boundary case 2022-11-06 01:59:59} detroit { + clock format 1667714399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.340 {time zone boundary case 2022-10-30 01:00:00} detroit { - clock format 1667109600 -format {%H:%M:%S %z %Z} \ +test clock-5.340 {time zone boundary case 2022-11-06 01:00:00} detroit { + clock format 1667714400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.341 {time zone boundary case 2022-10-30 01:00:01} detroit { - clock format 1667109601 -format {%H:%M:%S %z %Z} \ +test clock-5.341 {time zone boundary case 2022-11-06 01:00:01} detroit { + clock format 1667714401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.342 {time zone boundary case 2023-04-02 01:59:59} detroit { - clock format 1680418799 -format {%H:%M:%S %z %Z} \ +test clock-5.342 {time zone boundary case 2023-03-12 01:59:59} detroit { + clock format 1678604399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.343 {time zone boundary case 2023-04-02 03:00:00} detroit { - clock format 1680418800 -format {%H:%M:%S %z %Z} \ +test clock-5.343 {time zone boundary case 2023-03-12 03:00:00} detroit { + clock format 1678604400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.344 {time zone boundary case 2023-04-02 03:00:01} detroit { - clock format 1680418801 -format {%H:%M:%S %z %Z} \ +test clock-5.344 {time zone boundary case 2023-03-12 03:00:01} detroit { + clock format 1678604401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.345 {time zone boundary case 2023-10-29 01:59:59} detroit { - clock format 1698559199 -format {%H:%M:%S %z %Z} \ +test clock-5.345 {time zone boundary case 2023-11-05 01:59:59} detroit { + clock format 1699163999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.346 {time zone boundary case 2023-10-29 01:00:00} detroit { - clock format 1698559200 -format {%H:%M:%S %z %Z} \ +test clock-5.346 {time zone boundary case 2023-11-05 01:00:00} detroit { + clock format 1699164000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.347 {time zone boundary case 2023-10-29 01:00:01} detroit { - clock format 1698559201 -format {%H:%M:%S %z %Z} \ +test clock-5.347 {time zone boundary case 2023-11-05 01:00:01} detroit { + clock format 1699164001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.348 {time zone boundary case 2024-04-07 01:59:59} detroit { - clock format 1712473199 -format {%H:%M:%S %z %Z} \ +test clock-5.348 {time zone boundary case 2024-03-10 01:59:59} detroit { + clock format 1710053999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.349 {time zone boundary case 2024-04-07 03:00:00} detroit { - clock format 1712473200 -format {%H:%M:%S %z %Z} \ +test clock-5.349 {time zone boundary case 2024-03-10 03:00:00} detroit { + clock format 1710054000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.350 {time zone boundary case 2024-04-07 03:00:01} detroit { - clock format 1712473201 -format {%H:%M:%S %z %Z} \ +test clock-5.350 {time zone boundary case 2024-03-10 03:00:01} detroit { + clock format 1710054001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.351 {time zone boundary case 2024-10-27 01:59:59} detroit { - clock format 1730008799 -format {%H:%M:%S %z %Z} \ +test clock-5.351 {time zone boundary case 2024-11-03 01:59:59} detroit { + clock format 1730613599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.352 {time zone boundary case 2024-10-27 01:00:00} detroit { - clock format 1730008800 -format {%H:%M:%S %z %Z} \ +test clock-5.352 {time zone boundary case 2024-11-03 01:00:00} detroit { + clock format 1730613600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.353 {time zone boundary case 2024-10-27 01:00:01} detroit { - clock format 1730008801 -format {%H:%M:%S %z %Z} \ +test clock-5.353 {time zone boundary case 2024-11-03 01:00:01} detroit { + clock format 1730613601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.354 {time zone boundary case 2025-04-06 01:59:59} detroit { - clock format 1743922799 -format {%H:%M:%S %z %Z} \ +test clock-5.354 {time zone boundary case 2025-03-09 01:59:59} detroit { + clock format 1741503599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.355 {time zone boundary case 2025-04-06 03:00:00} detroit { - clock format 1743922800 -format {%H:%M:%S %z %Z} \ +test clock-5.355 {time zone boundary case 2025-03-09 03:00:00} detroit { + clock format 1741503600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.356 {time zone boundary case 2025-04-06 03:00:01} detroit { - clock format 1743922801 -format {%H:%M:%S %z %Z} \ +test clock-5.356 {time zone boundary case 2025-03-09 03:00:01} detroit { + clock format 1741503601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.357 {time zone boundary case 2025-10-26 01:59:59} detroit { - clock format 1761458399 -format {%H:%M:%S %z %Z} \ +test clock-5.357 {time zone boundary case 2025-11-02 01:59:59} detroit { + clock format 1762063199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.358 {time zone boundary case 2025-10-26 01:00:00} detroit { - clock format 1761458400 -format {%H:%M:%S %z %Z} \ +test clock-5.358 {time zone boundary case 2025-11-02 01:00:00} detroit { + clock format 1762063200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.359 {time zone boundary case 2025-10-26 01:00:01} detroit { - clock format 1761458401 -format {%H:%M:%S %z %Z} \ +test clock-5.359 {time zone boundary case 2025-11-02 01:00:01} detroit { + clock format 1762063201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.360 {time zone boundary case 2026-04-05 01:59:59} detroit { - clock format 1775372399 -format {%H:%M:%S %z %Z} \ +test clock-5.360 {time zone boundary case 2026-03-08 01:59:59} detroit { + clock format 1772953199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.361 {time zone boundary case 2026-04-05 03:00:00} detroit { - clock format 1775372400 -format {%H:%M:%S %z %Z} \ +test clock-5.361 {time zone boundary case 2026-03-08 03:00:00} detroit { + clock format 1772953200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.362 {time zone boundary case 2026-04-05 03:00:01} detroit { - clock format 1775372401 -format {%H:%M:%S %z %Z} \ +test clock-5.362 {time zone boundary case 2026-03-08 03:00:01} detroit { + clock format 1772953201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.363 {time zone boundary case 2026-10-25 01:59:59} detroit { - clock format 1792907999 -format {%H:%M:%S %z %Z} \ +test clock-5.363 {time zone boundary case 2026-11-01 01:59:59} detroit { + clock format 1793512799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.364 {time zone boundary case 2026-10-25 01:00:00} detroit { - clock format 1792908000 -format {%H:%M:%S %z %Z} \ +test clock-5.364 {time zone boundary case 2026-11-01 01:00:00} detroit { + clock format 1793512800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.365 {time zone boundary case 2026-10-25 01:00:01} detroit { - clock format 1792908001 -format {%H:%M:%S %z %Z} \ +test clock-5.365 {time zone boundary case 2026-11-01 01:00:01} detroit { + clock format 1793512801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.366 {time zone boundary case 2027-04-04 01:59:59} detroit { - clock format 1806821999 -format {%H:%M:%S %z %Z} \ +test clock-5.366 {time zone boundary case 2027-03-14 01:59:59} detroit { + clock format 1805007599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.367 {time zone boundary case 2027-04-04 03:00:00} detroit { - clock format 1806822000 -format {%H:%M:%S %z %Z} \ +test clock-5.367 {time zone boundary case 2027-03-14 03:00:00} detroit { + clock format 1805007600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.368 {time zone boundary case 2027-04-04 03:00:01} detroit { - clock format 1806822001 -format {%H:%M:%S %z %Z} \ +test clock-5.368 {time zone boundary case 2027-03-14 03:00:01} detroit { + clock format 1805007601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.369 {time zone boundary case 2027-10-31 01:59:59} detroit { - clock format 1824962399 -format {%H:%M:%S %z %Z} \ +test clock-5.369 {time zone boundary case 2027-11-07 01:59:59} detroit { + clock format 1825567199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.370 {time zone boundary case 2027-10-31 01:00:00} detroit { - clock format 1824962400 -format {%H:%M:%S %z %Z} \ +test clock-5.370 {time zone boundary case 2027-11-07 01:00:00} detroit { + clock format 1825567200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.371 {time zone boundary case 2027-10-31 01:00:01} detroit { - clock format 1824962401 -format {%H:%M:%S %z %Z} \ +test clock-5.371 {time zone boundary case 2027-11-07 01:00:01} detroit { + clock format 1825567201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.372 {time zone boundary case 2028-04-02 01:59:59} detroit { - clock format 1838271599 -format {%H:%M:%S %z %Z} \ +test clock-5.372 {time zone boundary case 2028-03-12 01:59:59} detroit { + clock format 1836457199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.373 {time zone boundary case 2028-04-02 03:00:00} detroit { - clock format 1838271600 -format {%H:%M:%S %z %Z} \ +test clock-5.373 {time zone boundary case 2028-03-12 03:00:00} detroit { + clock format 1836457200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.374 {time zone boundary case 2028-04-02 03:00:01} detroit { - clock format 1838271601 -format {%H:%M:%S %z %Z} \ +test clock-5.374 {time zone boundary case 2028-03-12 03:00:01} detroit { + clock format 1836457201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.375 {time zone boundary case 2028-10-29 01:59:59} detroit { - clock format 1856411999 -format {%H:%M:%S %z %Z} \ +test clock-5.375 {time zone boundary case 2028-11-05 01:59:59} detroit { + clock format 1857016799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.376 {time zone boundary case 2028-10-29 01:00:00} detroit { - clock format 1856412000 -format {%H:%M:%S %z %Z} \ +test clock-5.376 {time zone boundary case 2028-11-05 01:00:00} detroit { + clock format 1857016800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.377 {time zone boundary case 2028-10-29 01:00:01} detroit { - clock format 1856412001 -format {%H:%M:%S %z %Z} \ +test clock-5.377 {time zone boundary case 2028-11-05 01:00:01} detroit { + clock format 1857016801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.378 {time zone boundary case 2029-04-01 01:59:59} detroit { - clock format 1869721199 -format {%H:%M:%S %z %Z} \ +test clock-5.378 {time zone boundary case 2029-03-11 01:59:59} detroit { + clock format 1867906799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.379 {time zone boundary case 2029-04-01 03:00:00} detroit { - clock format 1869721200 -format {%H:%M:%S %z %Z} \ +test clock-5.379 {time zone boundary case 2029-03-11 03:00:00} detroit { + clock format 1867906800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.380 {time zone boundary case 2029-04-01 03:00:01} detroit { - clock format 1869721201 -format {%H:%M:%S %z %Z} \ +test clock-5.380 {time zone boundary case 2029-03-11 03:00:01} detroit { + clock format 1867906801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.381 {time zone boundary case 2029-10-28 01:59:59} detroit { - clock format 1887861599 -format {%H:%M:%S %z %Z} \ +test clock-5.381 {time zone boundary case 2029-11-04 01:59:59} detroit { + clock format 1888466399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.382 {time zone boundary case 2029-10-28 01:00:00} detroit { - clock format 1887861600 -format {%H:%M:%S %z %Z} \ +test clock-5.382 {time zone boundary case 2029-11-04 01:00:00} detroit { + clock format 1888466400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.383 {time zone boundary case 2029-10-28 01:00:01} detroit { - clock format 1887861601 -format {%H:%M:%S %z %Z} \ +test clock-5.383 {time zone boundary case 2029-11-04 01:00:01} detroit { + clock format 1888466401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.384 {time zone boundary case 2030-04-07 01:59:59} detroit { - clock format 1901775599 -format {%H:%M:%S %z %Z} \ +test clock-5.384 {time zone boundary case 2030-03-10 01:59:59} detroit { + clock format 1899356399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.385 {time zone boundary case 2030-04-07 03:00:00} detroit { - clock format 1901775600 -format {%H:%M:%S %z %Z} \ +test clock-5.385 {time zone boundary case 2030-03-10 03:00:00} detroit { + clock format 1899356400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.386 {time zone boundary case 2030-04-07 03:00:01} detroit { - clock format 1901775601 -format {%H:%M:%S %z %Z} \ +test clock-5.386 {time zone boundary case 2030-03-10 03:00:01} detroit { + clock format 1899356401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.387 {time zone boundary case 2030-10-27 01:59:59} detroit { - clock format 1919311199 -format {%H:%M:%S %z %Z} \ +test clock-5.387 {time zone boundary case 2030-11-03 01:59:59} detroit { + clock format 1919915999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.388 {time zone boundary case 2030-10-27 01:00:00} detroit { - clock format 1919311200 -format {%H:%M:%S %z %Z} \ +test clock-5.388 {time zone boundary case 2030-11-03 01:00:00} detroit { + clock format 1919916000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.389 {time zone boundary case 2030-10-27 01:00:01} detroit { - clock format 1919311201 -format {%H:%M:%S %z %Z} \ +test clock-5.389 {time zone boundary case 2030-11-03 01:00:01} detroit { + clock format 1919916001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.390 {time zone boundary case 2031-04-06 01:59:59} detroit { - clock format 1933225199 -format {%H:%M:%S %z %Z} \ +test clock-5.390 {time zone boundary case 2031-03-09 01:59:59} detroit { + clock format 1930805999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.391 {time zone boundary case 2031-04-06 03:00:00} detroit { - clock format 1933225200 -format {%H:%M:%S %z %Z} \ +test clock-5.391 {time zone boundary case 2031-03-09 03:00:00} detroit { + clock format 1930806000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.392 {time zone boundary case 2031-04-06 03:00:01} detroit { - clock format 1933225201 -format {%H:%M:%S %z %Z} \ +test clock-5.392 {time zone boundary case 2031-03-09 03:00:01} detroit { + clock format 1930806001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.393 {time zone boundary case 2031-10-26 01:59:59} detroit { - clock format 1950760799 -format {%H:%M:%S %z %Z} \ +test clock-5.393 {time zone boundary case 2031-11-02 01:59:59} detroit { + clock format 1951365599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.394 {time zone boundary case 2031-10-26 01:00:00} detroit { - clock format 1950760800 -format {%H:%M:%S %z %Z} \ +test clock-5.394 {time zone boundary case 2031-11-02 01:00:00} detroit { + clock format 1951365600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.395 {time zone boundary case 2031-10-26 01:00:01} detroit { - clock format 1950760801 -format {%H:%M:%S %z %Z} \ +test clock-5.395 {time zone boundary case 2031-11-02 01:00:01} detroit { + clock format 1951365601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.396 {time zone boundary case 2032-04-04 01:59:59} detroit { - clock format 1964674799 -format {%H:%M:%S %z %Z} \ +test clock-5.396 {time zone boundary case 2032-03-14 01:59:59} detroit { + clock format 1962860399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.397 {time zone boundary case 2032-04-04 03:00:00} detroit { - clock format 1964674800 -format {%H:%M:%S %z %Z} \ +test clock-5.397 {time zone boundary case 2032-03-14 03:00:00} detroit { + clock format 1962860400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.398 {time zone boundary case 2032-04-04 03:00:01} detroit { - clock format 1964674801 -format {%H:%M:%S %z %Z} \ +test clock-5.398 {time zone boundary case 2032-03-14 03:00:01} detroit { + clock format 1962860401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.399 {time zone boundary case 2032-10-31 01:59:59} detroit { - clock format 1982815199 -format {%H:%M:%S %z %Z} \ +test clock-5.399 {time zone boundary case 2032-11-07 01:59:59} detroit { + clock format 1983419999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.400 {time zone boundary case 2032-10-31 01:00:00} detroit { - clock format 1982815200 -format {%H:%M:%S %z %Z} \ +test clock-5.400 {time zone boundary case 2032-11-07 01:00:00} detroit { + clock format 1983420000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.401 {time zone boundary case 2032-10-31 01:00:01} detroit { - clock format 1982815201 -format {%H:%M:%S %z %Z} \ +test clock-5.401 {time zone boundary case 2032-11-07 01:00:01} detroit { + clock format 1983420001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.402 {time zone boundary case 2033-04-03 01:59:59} detroit { - clock format 1996124399 -format {%H:%M:%S %z %Z} \ +test clock-5.402 {time zone boundary case 2033-03-13 01:59:59} detroit { + clock format 1994309999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.403 {time zone boundary case 2033-04-03 03:00:00} detroit { - clock format 1996124400 -format {%H:%M:%S %z %Z} \ +test clock-5.403 {time zone boundary case 2033-03-13 03:00:00} detroit { + clock format 1994310000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.404 {time zone boundary case 2033-04-03 03:00:01} detroit { - clock format 1996124401 -format {%H:%M:%S %z %Z} \ +test clock-5.404 {time zone boundary case 2033-03-13 03:00:01} detroit { + clock format 1994310001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.405 {time zone boundary case 2033-10-30 01:59:59} detroit { - clock format 2014264799 -format {%H:%M:%S %z %Z} \ +test clock-5.405 {time zone boundary case 2033-11-06 01:59:59} detroit { + clock format 2014869599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.406 {time zone boundary case 2033-10-30 01:00:00} detroit { - clock format 2014264800 -format {%H:%M:%S %z %Z} \ +test clock-5.406 {time zone boundary case 2033-11-06 01:00:00} detroit { + clock format 2014869600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.407 {time zone boundary case 2033-10-30 01:00:01} detroit { - clock format 2014264801 -format {%H:%M:%S %z %Z} \ +test clock-5.407 {time zone boundary case 2033-11-06 01:00:01} detroit { + clock format 2014869601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.408 {time zone boundary case 2034-04-02 01:59:59} detroit { - clock format 2027573999 -format {%H:%M:%S %z %Z} \ +test clock-5.408 {time zone boundary case 2034-03-12 01:59:59} detroit { + clock format 2025759599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.409 {time zone boundary case 2034-04-02 03:00:00} detroit { - clock format 2027574000 -format {%H:%M:%S %z %Z} \ +test clock-5.409 {time zone boundary case 2034-03-12 03:00:00} detroit { + clock format 2025759600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.410 {time zone boundary case 2034-04-02 03:00:01} detroit { - clock format 2027574001 -format {%H:%M:%S %z %Z} \ +test clock-5.410 {time zone boundary case 2034-03-12 03:00:01} detroit { + clock format 2025759601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.411 {time zone boundary case 2034-10-29 01:59:59} detroit { - clock format 2045714399 -format {%H:%M:%S %z %Z} \ +test clock-5.411 {time zone boundary case 2034-11-05 01:59:59} detroit { + clock format 2046319199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.412 {time zone boundary case 2034-10-29 01:00:00} detroit { - clock format 2045714400 -format {%H:%M:%S %z %Z} \ +test clock-5.412 {time zone boundary case 2034-11-05 01:00:00} detroit { + clock format 2046319200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.413 {time zone boundary case 2034-10-29 01:00:01} detroit { - clock format 2045714401 -format {%H:%M:%S %z %Z} \ +test clock-5.413 {time zone boundary case 2034-11-05 01:00:01} detroit { + clock format 2046319201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.414 {time zone boundary case 2035-04-01 01:59:59} detroit { - clock format 2059023599 -format {%H:%M:%S %z %Z} \ +test clock-5.414 {time zone boundary case 2035-03-11 01:59:59} detroit { + clock format 2057209199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.415 {time zone boundary case 2035-04-01 03:00:00} detroit { - clock format 2059023600 -format {%H:%M:%S %z %Z} \ +test clock-5.415 {time zone boundary case 2035-03-11 03:00:00} detroit { + clock format 2057209200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.416 {time zone boundary case 2035-04-01 03:00:01} detroit { - clock format 2059023601 -format {%H:%M:%S %z %Z} \ +test clock-5.416 {time zone boundary case 2035-03-11 03:00:01} detroit { + clock format 2057209201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.417 {time zone boundary case 2035-10-28 01:59:59} detroit { - clock format 2077163999 -format {%H:%M:%S %z %Z} \ +test clock-5.417 {time zone boundary case 2035-11-04 01:59:59} detroit { + clock format 2077768799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.418 {time zone boundary case 2035-10-28 01:00:00} detroit { - clock format 2077164000 -format {%H:%M:%S %z %Z} \ +test clock-5.418 {time zone boundary case 2035-11-04 01:00:00} detroit { + clock format 2077768800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.419 {time zone boundary case 2035-10-28 01:00:01} detroit { - clock format 2077164001 -format {%H:%M:%S %z %Z} \ +test clock-5.419 {time zone boundary case 2035-11-04 01:00:01} detroit { + clock format 2077768801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.420 {time zone boundary case 2036-04-06 01:59:59} detroit { - clock format 2091077999 -format {%H:%M:%S %z %Z} \ +test clock-5.420 {time zone boundary case 2036-03-09 01:59:59} detroit { + clock format 2088658799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.421 {time zone boundary case 2036-04-06 03:00:00} detroit { - clock format 2091078000 -format {%H:%M:%S %z %Z} \ +test clock-5.421 {time zone boundary case 2036-03-09 03:00:00} detroit { + clock format 2088658800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.422 {time zone boundary case 2036-04-06 03:00:01} detroit { - clock format 2091078001 -format {%H:%M:%S %z %Z} \ +test clock-5.422 {time zone boundary case 2036-03-09 03:00:01} detroit { + clock format 2088658801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.423 {time zone boundary case 2036-10-26 01:59:59} detroit { - clock format 2108613599 -format {%H:%M:%S %z %Z} \ +test clock-5.423 {time zone boundary case 2036-11-02 01:59:59} detroit { + clock format 2109218399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.424 {time zone boundary case 2036-10-26 01:00:00} detroit { - clock format 2108613600 -format {%H:%M:%S %z %Z} \ +test clock-5.424 {time zone boundary case 2036-11-02 01:00:00} detroit { + clock format 2109218400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.425 {time zone boundary case 2036-10-26 01:00:01} detroit { - clock format 2108613601 -format {%H:%M:%S %z %Z} \ +test clock-5.425 {time zone boundary case 2036-11-02 01:00:01} detroit { + clock format 2109218401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.426 {time zone boundary case 2037-04-05 01:59:59} detroit { - clock format 2122527599 -format {%H:%M:%S %z %Z} \ +test clock-5.426 {time zone boundary case 2037-03-08 01:59:59} detroit { + clock format 2120108399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.427 {time zone boundary case 2037-04-05 03:00:00} detroit { - clock format 2122527600 -format {%H:%M:%S %z %Z} \ +test clock-5.427 {time zone boundary case 2037-03-08 03:00:00} detroit { + clock format 2120108400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.428 {time zone boundary case 2037-04-05 03:00:01} detroit { - clock format 2122527601 -format {%H:%M:%S %z %Z} \ +test clock-5.428 {time zone boundary case 2037-03-08 03:00:01} detroit { + clock format 2120108401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.429 {time zone boundary case 2037-10-25 01:59:59} detroit { - clock format 2140063199 -format {%H:%M:%S %z %Z} \ +test clock-5.429 {time zone boundary case 2037-11-01 01:59:59} detroit { + clock format 2140667999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.430 {time zone boundary case 2037-10-25 01:00:00} detroit { - clock format 2140063200 -format {%H:%M:%S %z %Z} \ +test clock-5.430 {time zone boundary case 2037-11-01 01:00:00} detroit { + clock format 2140668000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.431 {time zone boundary case 2037-10-25 01:00:01} detroit { - clock format 2140063201 -format {%H:%M:%S %z %Z} \ +test clock-5.431 {time zone boundary case 2037-11-01 01:00:01} detroit { + clock format 2140668001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.432 {time zone boundary case 2038-04-04 01:59:59} {detroit y2038} { - clock format 2153977199 -format {%H:%M:%S %z %Z} \ +test clock-5.432 {time zone boundary case 2038-03-14 01:59:59} {detroit y2038} { + clock format 2152162799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.433 {time zone boundary case 2038-04-04 03:00:00} {detroit y2038} { - clock format 2153977200 -format {%H:%M:%S %z %Z} \ +test clock-5.433 {time zone boundary case 2038-03-14 03:00:00} {detroit y2038} { + clock format 2152162800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.434 {time zone boundary case 2038-04-04 03:00:01} {detroit y2038} { - clock format 2153977201 -format {%H:%M:%S %z %Z} \ +test clock-5.434 {time zone boundary case 2038-03-14 03:00:01} {detroit y2038} { + clock format 2152162801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.435 {time zone boundary case 2038-10-31 01:59:59} {detroit y2038} { - clock format 2172117599 -format {%H:%M:%S %z %Z} \ +test clock-5.435 {time zone boundary case 2038-11-07 01:59:59} {detroit y2038} { + clock format 2172722399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.436 {time zone boundary case 2038-10-31 01:00:00} {detroit y2038} { - clock format 2172117600 -format {%H:%M:%S %z %Z} \ +test clock-5.436 {time zone boundary case 2038-11-07 01:00:00} {detroit y2038} { + clock format 2172722400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.437 {time zone boundary case 2038-10-31 01:00:01} {detroit y2038} { - clock format 2172117601 -format {%H:%M:%S %z %Z} \ +test clock-5.437 {time zone boundary case 2038-11-07 01:00:01} {detroit y2038} { + clock format 2172722401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.438 {time zone boundary case 2039-04-03 01:59:59} {detroit y2038} { - clock format 2185426799 -format {%H:%M:%S %z %Z} \ +test clock-5.438 {time zone boundary case 2039-03-13 01:59:59} {detroit y2038} { + clock format 2183612399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.439 {time zone boundary case 2039-04-03 03:00:00} {detroit y2038} { - clock format 2185426800 -format {%H:%M:%S %z %Z} \ +test clock-5.439 {time zone boundary case 2039-03-13 03:00:00} {detroit y2038} { + clock format 2183612400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.440 {time zone boundary case 2039-04-03 03:00:01} {detroit y2038} { - clock format 2185426801 -format {%H:%M:%S %z %Z} \ +test clock-5.440 {time zone boundary case 2039-03-13 03:00:01} {detroit y2038} { + clock format 2183612401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.441 {time zone boundary case 2039-10-30 01:59:59} {detroit y2038} { - clock format 2203567199 -format {%H:%M:%S %z %Z} \ +test clock-5.441 {time zone boundary case 2039-11-06 01:59:59} {detroit y2038} { + clock format 2204171999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.442 {time zone boundary case 2039-10-30 01:00:00} {detroit y2038} { - clock format 2203567200 -format {%H:%M:%S %z %Z} \ +test clock-5.442 {time zone boundary case 2039-11-06 01:00:00} {detroit y2038} { + clock format 2204172000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.443 {time zone boundary case 2039-10-30 01:00:01} {detroit y2038} { - clock format 2203567201 -format {%H:%M:%S %z %Z} \ +test clock-5.443 {time zone boundary case 2039-11-06 01:00:01} {detroit y2038} { + clock format 2204172001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.444 {time zone boundary case 2040-04-01 01:59:59} {detroit y2038} { - clock format 2216876399 -format {%H:%M:%S %z %Z} \ +test clock-5.444 {time zone boundary case 2040-03-11 01:59:59} {detroit y2038} { + clock format 2215061999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.445 {time zone boundary case 2040-04-01 03:00:00} {detroit y2038} { - clock format 2216876400 -format {%H:%M:%S %z %Z} \ +test clock-5.445 {time zone boundary case 2040-03-11 03:00:00} {detroit y2038} { + clock format 2215062000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.446 {time zone boundary case 2040-04-01 03:00:01} {detroit y2038} { - clock format 2216876401 -format {%H:%M:%S %z %Z} \ +test clock-5.446 {time zone boundary case 2040-03-11 03:00:01} {detroit y2038} { + clock format 2215062001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.447 {time zone boundary case 2040-10-28 01:59:59} {detroit y2038} { - clock format 2235016799 -format {%H:%M:%S %z %Z} \ +test clock-5.447 {time zone boundary case 2040-11-04 01:59:59} {detroit y2038} { + clock format 2235621599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.448 {time zone boundary case 2040-10-28 01:00:00} {detroit y2038} { - clock format 2235016800 -format {%H:%M:%S %z %Z} \ +test clock-5.448 {time zone boundary case 2040-11-04 01:00:00} {detroit y2038} { + clock format 2235621600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.449 {time zone boundary case 2040-10-28 01:00:01} {detroit y2038} { - clock format 2235016801 -format {%H:%M:%S %z %Z} \ +test clock-5.449 {time zone boundary case 2040-11-04 01:00:01} {detroit y2038} { + clock format 2235621601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.450 {time zone boundary case 2041-04-07 01:59:59} {detroit y2038} { - clock format 2248930799 -format {%H:%M:%S %z %Z} \ +test clock-5.450 {time zone boundary case 2041-03-10 01:59:59} {detroit y2038} { + clock format 2246511599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.451 {time zone boundary case 2041-04-07 03:00:00} {detroit y2038} { - clock format 2248930800 -format {%H:%M:%S %z %Z} \ +test clock-5.451 {time zone boundary case 2041-03-10 03:00:00} {detroit y2038} { + clock format 2246511600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.452 {time zone boundary case 2041-04-07 03:00:01} {detroit y2038} { - clock format 2248930801 -format {%H:%M:%S %z %Z} \ +test clock-5.452 {time zone boundary case 2041-03-10 03:00:01} {detroit y2038} { + clock format 2246511601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.453 {time zone boundary case 2041-10-27 01:59:59} {detroit y2038} { - clock format 2266466399 -format {%H:%M:%S %z %Z} \ +test clock-5.453 {time zone boundary case 2041-11-03 01:59:59} {detroit y2038} { + clock format 2267071199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.454 {time zone boundary case 2041-10-27 01:00:00} {detroit y2038} { - clock format 2266466400 -format {%H:%M:%S %z %Z} \ +test clock-5.454 {time zone boundary case 2041-11-03 01:00:00} {detroit y2038} { + clock format 2267071200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.455 {time zone boundary case 2041-10-27 01:00:01} {detroit y2038} { - clock format 2266466401 -format {%H:%M:%S %z %Z} \ +test clock-5.455 {time zone boundary case 2041-11-03 01:00:01} {detroit y2038} { + clock format 2267071201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.456 {time zone boundary case 2042-04-06 01:59:59} {detroit y2038} { - clock format 2280380399 -format {%H:%M:%S %z %Z} \ +test clock-5.456 {time zone boundary case 2042-03-09 01:59:59} {detroit y2038} { + clock format 2277961199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.457 {time zone boundary case 2042-04-06 03:00:00} {detroit y2038} { - clock format 2280380400 -format {%H:%M:%S %z %Z} \ +test clock-5.457 {time zone boundary case 2042-03-09 03:00:00} {detroit y2038} { + clock format 2277961200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.458 {time zone boundary case 2042-04-06 03:00:01} {detroit y2038} { - clock format 2280380401 -format {%H:%M:%S %z %Z} \ +test clock-5.458 {time zone boundary case 2042-03-09 03:00:01} {detroit y2038} { + clock format 2277961201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.459 {time zone boundary case 2042-10-26 01:59:59} {detroit y2038} { - clock format 2297915999 -format {%H:%M:%S %z %Z} \ +test clock-5.459 {time zone boundary case 2042-11-02 01:59:59} {detroit y2038} { + clock format 2298520799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.460 {time zone boundary case 2042-10-26 01:00:00} {detroit y2038} { - clock format 2297916000 -format {%H:%M:%S %z %Z} \ +test clock-5.460 {time zone boundary case 2042-11-02 01:00:00} {detroit y2038} { + clock format 2298520800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.461 {time zone boundary case 2042-10-26 01:00:01} {detroit y2038} { - clock format 2297916001 -format {%H:%M:%S %z %Z} \ +test clock-5.461 {time zone boundary case 2042-11-02 01:00:01} {detroit y2038} { + clock format 2298520801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.462 {time zone boundary case 2043-04-05 01:59:59} {detroit y2038} { - clock format 2311829999 -format {%H:%M:%S %z %Z} \ +test clock-5.462 {time zone boundary case 2043-03-08 01:59:59} {detroit y2038} { + clock format 2309410799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.463 {time zone boundary case 2043-04-05 03:00:00} {detroit y2038} { - clock format 2311830000 -format {%H:%M:%S %z %Z} \ +test clock-5.463 {time zone boundary case 2043-03-08 03:00:00} {detroit y2038} { + clock format 2309410800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.464 {time zone boundary case 2043-04-05 03:00:01} {detroit y2038} { - clock format 2311830001 -format {%H:%M:%S %z %Z} \ +test clock-5.464 {time zone boundary case 2043-03-08 03:00:01} {detroit y2038} { + clock format 2309410801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.465 {time zone boundary case 2043-10-25 01:59:59} {detroit y2038} { - clock format 2329365599 -format {%H:%M:%S %z %Z} \ +test clock-5.465 {time zone boundary case 2043-11-01 01:59:59} {detroit y2038} { + clock format 2329970399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.466 {time zone boundary case 2043-10-25 01:00:00} {detroit y2038} { - clock format 2329365600 -format {%H:%M:%S %z %Z} \ +test clock-5.466 {time zone boundary case 2043-11-01 01:00:00} {detroit y2038} { + clock format 2329970400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.467 {time zone boundary case 2043-10-25 01:00:01} {detroit y2038} { - clock format 2329365601 -format {%H:%M:%S %z %Z} \ +test clock-5.467 {time zone boundary case 2043-11-01 01:00:01} {detroit y2038} { + clock format 2329970401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.468 {time zone boundary case 2044-04-03 01:59:59} {detroit y2038} { - clock format 2343279599 -format {%H:%M:%S %z %Z} \ +test clock-5.468 {time zone boundary case 2044-03-13 01:59:59} {detroit y2038} { + clock format 2341465199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.469 {time zone boundary case 2044-04-03 03:00:00} {detroit y2038} { - clock format 2343279600 -format {%H:%M:%S %z %Z} \ +test clock-5.469 {time zone boundary case 2044-03-13 03:00:00} {detroit y2038} { + clock format 2341465200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.470 {time zone boundary case 2044-04-03 03:00:01} {detroit y2038} { - clock format 2343279601 -format {%H:%M:%S %z %Z} \ +test clock-5.470 {time zone boundary case 2044-03-13 03:00:01} {detroit y2038} { + clock format 2341465201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.471 {time zone boundary case 2044-10-30 01:59:59} {detroit y2038} { - clock format 2361419999 -format {%H:%M:%S %z %Z} \ +test clock-5.471 {time zone boundary case 2044-11-06 01:59:59} {detroit y2038} { + clock format 2362024799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.472 {time zone boundary case 2044-10-30 01:00:00} {detroit y2038} { - clock format 2361420000 -format {%H:%M:%S %z %Z} \ +test clock-5.472 {time zone boundary case 2044-11-06 01:00:00} {detroit y2038} { + clock format 2362024800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.473 {time zone boundary case 2044-10-30 01:00:01} {detroit y2038} { - clock format 2361420001 -format {%H:%M:%S %z %Z} \ +test clock-5.473 {time zone boundary case 2044-11-06 01:00:01} {detroit y2038} { + clock format 2362024801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.474 {time zone boundary case 2045-04-02 01:59:59} {detroit y2038} { - clock format 2374729199 -format {%H:%M:%S %z %Z} \ +test clock-5.474 {time zone boundary case 2045-03-12 01:59:59} {detroit y2038} { + clock format 2372914799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.475 {time zone boundary case 2045-04-02 03:00:00} {detroit y2038} { - clock format 2374729200 -format {%H:%M:%S %z %Z} \ +test clock-5.475 {time zone boundary case 2045-03-12 03:00:00} {detroit y2038} { + clock format 2372914800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.476 {time zone boundary case 2045-04-02 03:00:01} {detroit y2038} { - clock format 2374729201 -format {%H:%M:%S %z %Z} \ +test clock-5.476 {time zone boundary case 2045-03-12 03:00:01} {detroit y2038} { + clock format 2372914801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.477 {time zone boundary case 2045-10-29 01:59:59} {detroit y2038} { - clock format 2392869599 -format {%H:%M:%S %z %Z} \ +test clock-5.477 {time zone boundary case 2045-11-05 01:59:59} {detroit y2038} { + clock format 2393474399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.478 {time zone boundary case 2045-10-29 01:00:00} {detroit y2038} { - clock format 2392869600 -format {%H:%M:%S %z %Z} \ +test clock-5.478 {time zone boundary case 2045-11-05 01:00:00} {detroit y2038} { + clock format 2393474400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.479 {time zone boundary case 2045-10-29 01:00:01} {detroit y2038} { - clock format 2392869601 -format {%H:%M:%S %z %Z} \ +test clock-5.479 {time zone boundary case 2045-11-05 01:00:01} {detroit y2038} { + clock format 2393474401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.480 {time zone boundary case 2046-04-01 01:59:59} {detroit y2038} { - clock format 2406178799 -format {%H:%M:%S %z %Z} \ +test clock-5.480 {time zone boundary case 2046-03-11 01:59:59} {detroit y2038} { + clock format 2404364399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.481 {time zone boundary case 2046-04-01 03:00:00} {detroit y2038} { - clock format 2406178800 -format {%H:%M:%S %z %Z} \ +test clock-5.481 {time zone boundary case 2046-03-11 03:00:00} {detroit y2038} { + clock format 2404364400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.482 {time zone boundary case 2046-04-01 03:00:01} {detroit y2038} { - clock format 2406178801 -format {%H:%M:%S %z %Z} \ +test clock-5.482 {time zone boundary case 2046-03-11 03:00:01} {detroit y2038} { + clock format 2404364401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.483 {time zone boundary case 2046-10-28 01:59:59} {detroit y2038} { - clock format 2424319199 -format {%H:%M:%S %z %Z} \ +test clock-5.483 {time zone boundary case 2046-11-04 01:59:59} {detroit y2038} { + clock format 2424923999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.484 {time zone boundary case 2046-10-28 01:00:00} {detroit y2038} { - clock format 2424319200 -format {%H:%M:%S %z %Z} \ +test clock-5.484 {time zone boundary case 2046-11-04 01:00:00} {detroit y2038} { + clock format 2424924000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.485 {time zone boundary case 2046-10-28 01:00:01} {detroit y2038} { - clock format 2424319201 -format {%H:%M:%S %z %Z} \ +test clock-5.485 {time zone boundary case 2046-11-04 01:00:01} {detroit y2038} { + clock format 2424924001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.486 {time zone boundary case 2047-04-07 01:59:59} {detroit y2038} { - clock format 2438233199 -format {%H:%M:%S %z %Z} \ +test clock-5.486 {time zone boundary case 2047-03-10 01:59:59} {detroit y2038} { + clock format 2435813999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.487 {time zone boundary case 2047-04-07 03:00:00} {detroit y2038} { - clock format 2438233200 -format {%H:%M:%S %z %Z} \ +test clock-5.487 {time zone boundary case 2047-03-10 03:00:00} {detroit y2038} { + clock format 2435814000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.488 {time zone boundary case 2047-04-07 03:00:01} {detroit y2038} { - clock format 2438233201 -format {%H:%M:%S %z %Z} \ +test clock-5.488 {time zone boundary case 2047-03-10 03:00:01} {detroit y2038} { + clock format 2435814001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.489 {time zone boundary case 2047-10-27 01:59:59} {detroit y2038} { - clock format 2455768799 -format {%H:%M:%S %z %Z} \ +test clock-5.489 {time zone boundary case 2047-11-03 01:59:59} {detroit y2038} { + clock format 2456373599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.490 {time zone boundary case 2047-10-27 01:00:00} {detroit y2038} { - clock format 2455768800 -format {%H:%M:%S %z %Z} \ +test clock-5.490 {time zone boundary case 2047-11-03 01:00:00} {detroit y2038} { + clock format 2456373600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.491 {time zone boundary case 2047-10-27 01:00:01} {detroit y2038} { - clock format 2455768801 -format {%H:%M:%S %z %Z} \ +test clock-5.491 {time zone boundary case 2047-11-03 01:00:01} {detroit y2038} { + clock format 2456373601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.492 {time zone boundary case 2048-04-05 01:59:59} {detroit y2038} { - clock format 2469682799 -format {%H:%M:%S %z %Z} \ +test clock-5.492 {time zone boundary case 2048-03-08 01:59:59} {detroit y2038} { + clock format 2467263599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.493 {time zone boundary case 2048-04-05 03:00:00} {detroit y2038} { - clock format 2469682800 -format {%H:%M:%S %z %Z} \ +test clock-5.493 {time zone boundary case 2048-03-08 03:00:00} {detroit y2038} { + clock format 2467263600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.494 {time zone boundary case 2048-04-05 03:00:01} {detroit y2038} { - clock format 2469682801 -format {%H:%M:%S %z %Z} \ +test clock-5.494 {time zone boundary case 2048-03-08 03:00:01} {detroit y2038} { + clock format 2467263601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.495 {time zone boundary case 2048-10-25 01:59:59} {detroit y2038} { - clock format 2487218399 -format {%H:%M:%S %z %Z} \ +test clock-5.495 {time zone boundary case 2048-11-01 01:59:59} {detroit y2038} { + clock format 2487823199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.496 {time zone boundary case 2048-10-25 01:00:00} {detroit y2038} { - clock format 2487218400 -format {%H:%M:%S %z %Z} \ +test clock-5.496 {time zone boundary case 2048-11-01 01:00:00} {detroit y2038} { + clock format 2487823200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.497 {time zone boundary case 2048-10-25 01:00:01} {detroit y2038} { - clock format 2487218401 -format {%H:%M:%S %z %Z} \ +test clock-5.497 {time zone boundary case 2048-11-01 01:00:01} {detroit y2038} { + clock format 2487823201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.498 {time zone boundary case 2049-04-04 01:59:59} {detroit y2038} { - clock format 2501132399 -format {%H:%M:%S %z %Z} \ +test clock-5.498 {time zone boundary case 2049-03-14 01:59:59} {detroit y2038} { + clock format 2499317999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.499 {time zone boundary case 2049-04-04 03:00:00} {detroit y2038} { - clock format 2501132400 -format {%H:%M:%S %z %Z} \ +test clock-5.499 {time zone boundary case 2049-03-14 03:00:00} {detroit y2038} { + clock format 2499318000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.500 {time zone boundary case 2049-04-04 03:00:01} {detroit y2038} { - clock format 2501132401 -format {%H:%M:%S %z %Z} \ +test clock-5.500 {time zone boundary case 2049-03-14 03:00:01} {detroit y2038} { + clock format 2499318001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.501 {time zone boundary case 2049-10-31 01:59:59} {detroit y2038} { - clock format 2519272799 -format {%H:%M:%S %z %Z} \ +test clock-5.501 {time zone boundary case 2049-11-07 01:59:59} {detroit y2038} { + clock format 2519877599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.502 {time zone boundary case 2049-10-31 01:00:00} {detroit y2038} { - clock format 2519272800 -format {%H:%M:%S %z %Z} \ +test clock-5.502 {time zone boundary case 2049-11-07 01:00:00} {detroit y2038} { + clock format 2519877600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.503 {time zone boundary case 2049-10-31 01:00:01} {detroit y2038} { - clock format 2519272801 -format {%H:%M:%S %z %Z} \ +test clock-5.503 {time zone boundary case 2049-11-07 01:00:01} {detroit y2038} { + clock format 2519877601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.504 {time zone boundary case 2050-04-03 01:59:59} {detroit y2038} { - clock format 2532581999 -format {%H:%M:%S %z %Z} \ +test clock-5.504 {time zone boundary case 2050-03-13 01:59:59} {detroit y2038} { + clock format 2530767599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.505 {time zone boundary case 2050-04-03 03:00:00} {detroit y2038} { - clock format 2532582000 -format {%H:%M:%S %z %Z} \ +test clock-5.505 {time zone boundary case 2050-03-13 03:00:00} {detroit y2038} { + clock format 2530767600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.506 {time zone boundary case 2050-04-03 03:00:01} {detroit y2038} { - clock format 2532582001 -format {%H:%M:%S %z %Z} \ +test clock-5.506 {time zone boundary case 2050-03-13 03:00:01} {detroit y2038} { + clock format 2530767601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.507 {time zone boundary case 2050-10-30 01:59:59} {detroit y2038} { - clock format 2550722399 -format {%H:%M:%S %z %Z} \ +test clock-5.507 {time zone boundary case 2050-11-06 01:59:59} {detroit y2038} { + clock format 2551327199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.508 {time zone boundary case 2050-10-30 01:00:00} {detroit y2038} { - clock format 2550722400 -format {%H:%M:%S %z %Z} \ +test clock-5.508 {time zone boundary case 2050-11-06 01:00:00} {detroit y2038} { + clock format 2551327200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.509 {time zone boundary case 2050-10-30 01:00:01} {detroit y2038} { - clock format 2550722401 -format {%H:%M:%S %z %Z} \ +test clock-5.509 {time zone boundary case 2050-11-06 01:00:01} {detroit y2038} { + clock format 2551327201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.510 {time zone boundary case 2051-04-02 01:59:59} {detroit y2038} { - clock format 2564031599 -format {%H:%M:%S %z %Z} \ +test clock-5.510 {time zone boundary case 2051-03-12 01:59:59} {detroit y2038} { + clock format 2562217199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.511 {time zone boundary case 2051-04-02 03:00:00} {detroit y2038} { - clock format 2564031600 -format {%H:%M:%S %z %Z} \ +test clock-5.511 {time zone boundary case 2051-03-12 03:00:00} {detroit y2038} { + clock format 2562217200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.512 {time zone boundary case 2051-04-02 03:00:01} {detroit y2038} { - clock format 2564031601 -format {%H:%M:%S %z %Z} \ +test clock-5.512 {time zone boundary case 2051-03-12 03:00:01} {detroit y2038} { + clock format 2562217201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.513 {time zone boundary case 2051-10-29 01:59:59} {detroit y2038} { - clock format 2582171999 -format {%H:%M:%S %z %Z} \ +test clock-5.513 {time zone boundary case 2051-11-05 01:59:59} {detroit y2038} { + clock format 2582776799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.514 {time zone boundary case 2051-10-29 01:00:00} {detroit y2038} { - clock format 2582172000 -format {%H:%M:%S %z %Z} \ +test clock-5.514 {time zone boundary case 2051-11-05 01:00:00} {detroit y2038} { + clock format 2582776800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.515 {time zone boundary case 2051-10-29 01:00:01} {detroit y2038} { - clock format 2582172001 -format {%H:%M:%S %z %Z} \ +test clock-5.515 {time zone boundary case 2051-11-05 01:00:01} {detroit y2038} { + clock format 2582776801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.516 {time zone boundary case 2052-04-07 01:59:59} {detroit y2038} { - clock format 2596085999 -format {%H:%M:%S %z %Z} \ +test clock-5.516 {time zone boundary case 2052-03-10 01:59:59} {detroit y2038} { + clock format 2593666799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.517 {time zone boundary case 2052-04-07 03:00:00} {detroit y2038} { - clock format 2596086000 -format {%H:%M:%S %z %Z} \ +test clock-5.517 {time zone boundary case 2052-03-10 03:00:00} {detroit y2038} { + clock format 2593666800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.518 {time zone boundary case 2052-04-07 03:00:01} {detroit y2038} { - clock format 2596086001 -format {%H:%M:%S %z %Z} \ +test clock-5.518 {time zone boundary case 2052-03-10 03:00:01} {detroit y2038} { + clock format 2593666801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.519 {time zone boundary case 2052-10-27 01:59:59} {detroit y2038} { - clock format 2613621599 -format {%H:%M:%S %z %Z} \ +test clock-5.519 {time zone boundary case 2052-11-03 01:59:59} {detroit y2038} { + clock format 2614226399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.520 {time zone boundary case 2052-10-27 01:00:00} {detroit y2038} { - clock format 2613621600 -format {%H:%M:%S %z %Z} \ +test clock-5.520 {time zone boundary case 2052-11-03 01:00:00} {detroit y2038} { + clock format 2614226400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.521 {time zone boundary case 2052-10-27 01:00:01} {detroit y2038} { - clock format 2613621601 -format {%H:%M:%S %z %Z} \ +test clock-5.521 {time zone boundary case 2052-11-03 01:00:01} {detroit y2038} { + clock format 2614226401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.522 {time zone boundary case 2053-04-06 01:59:59} {detroit y2038} { - clock format 2627535599 -format {%H:%M:%S %z %Z} \ +test clock-5.522 {time zone boundary case 2053-03-09 01:59:59} {detroit y2038} { + clock format 2625116399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.523 {time zone boundary case 2053-04-06 03:00:00} {detroit y2038} { - clock format 2627535600 -format {%H:%M:%S %z %Z} \ +test clock-5.523 {time zone boundary case 2053-03-09 03:00:00} {detroit y2038} { + clock format 2625116400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.524 {time zone boundary case 2053-04-06 03:00:01} {detroit y2038} { - clock format 2627535601 -format {%H:%M:%S %z %Z} \ +test clock-5.524 {time zone boundary case 2053-03-09 03:00:01} {detroit y2038} { + clock format 2625116401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.525 {time zone boundary case 2053-10-26 01:59:59} {detroit y2038} { - clock format 2645071199 -format {%H:%M:%S %z %Z} \ +test clock-5.525 {time zone boundary case 2053-11-02 01:59:59} {detroit y2038} { + clock format 2645675999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.526 {time zone boundary case 2053-10-26 01:00:00} {detroit y2038} { - clock format 2645071200 -format {%H:%M:%S %z %Z} \ +test clock-5.526 {time zone boundary case 2053-11-02 01:00:00} {detroit y2038} { + clock format 2645676000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.527 {time zone boundary case 2053-10-26 01:00:01} {detroit y2038} { - clock format 2645071201 -format {%H:%M:%S %z %Z} \ +test clock-5.527 {time zone boundary case 2053-11-02 01:00:01} {detroit y2038} { + clock format 2645676001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.528 {time zone boundary case 2054-04-05 01:59:59} {detroit y2038} { - clock format 2658985199 -format {%H:%M:%S %z %Z} \ +test clock-5.528 {time zone boundary case 2054-03-08 01:59:59} {detroit y2038} { + clock format 2656565999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.529 {time zone boundary case 2054-04-05 03:00:00} {detroit y2038} { - clock format 2658985200 -format {%H:%M:%S %z %Z} \ +test clock-5.529 {time zone boundary case 2054-03-08 03:00:00} {detroit y2038} { + clock format 2656566000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.530 {time zone boundary case 2054-04-05 03:00:01} {detroit y2038} { - clock format 2658985201 -format {%H:%M:%S %z %Z} \ +test clock-5.530 {time zone boundary case 2054-03-08 03:00:01} {detroit y2038} { + clock format 2656566001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.531 {time zone boundary case 2054-10-25 01:59:59} {detroit y2038} { - clock format 2676520799 -format {%H:%M:%S %z %Z} \ +test clock-5.531 {time zone boundary case 2054-11-01 01:59:59} {detroit y2038} { + clock format 2677125599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.532 {time zone boundary case 2054-10-25 01:00:00} {detroit y2038} { - clock format 2676520800 -format {%H:%M:%S %z %Z} \ +test clock-5.532 {time zone boundary case 2054-11-01 01:00:00} {detroit y2038} { + clock format 2677125600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.533 {time zone boundary case 2054-10-25 01:00:01} {detroit y2038} { - clock format 2676520801 -format {%H:%M:%S %z %Z} \ +test clock-5.533 {time zone boundary case 2054-11-01 01:00:01} {detroit y2038} { + clock format 2677125601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.534 {time zone boundary case 2055-04-04 01:59:59} {detroit y2038} { - clock format 2690434799 -format {%H:%M:%S %z %Z} \ +test clock-5.534 {time zone boundary case 2055-03-14 01:59:59} {detroit y2038} { + clock format 2688620399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.535 {time zone boundary case 2055-04-04 03:00:00} {detroit y2038} { - clock format 2690434800 -format {%H:%M:%S %z %Z} \ +test clock-5.535 {time zone boundary case 2055-03-14 03:00:00} {detroit y2038} { + clock format 2688620400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.536 {time zone boundary case 2055-04-04 03:00:01} {detroit y2038} { - clock format 2690434801 -format {%H:%M:%S %z %Z} \ +test clock-5.536 {time zone boundary case 2055-03-14 03:00:01} {detroit y2038} { + clock format 2688620401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.537 {time zone boundary case 2055-10-31 01:59:59} {detroit y2038} { - clock format 2708575199 -format {%H:%M:%S %z %Z} \ +test clock-5.537 {time zone boundary case 2055-11-07 01:59:59} {detroit y2038} { + clock format 2709179999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.538 {time zone boundary case 2055-10-31 01:00:00} {detroit y2038} { - clock format 2708575200 -format {%H:%M:%S %z %Z} \ +test clock-5.538 {time zone boundary case 2055-11-07 01:00:00} {detroit y2038} { + clock format 2709180000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.539 {time zone boundary case 2055-10-31 01:00:01} {detroit y2038} { - clock format 2708575201 -format {%H:%M:%S %z %Z} \ +test clock-5.539 {time zone boundary case 2055-11-07 01:00:01} {detroit y2038} { + clock format 2709180001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.540 {time zone boundary case 2056-04-02 01:59:59} {detroit y2038} { - clock format 2721884399 -format {%H:%M:%S %z %Z} \ +test clock-5.540 {time zone boundary case 2056-03-12 01:59:59} {detroit y2038} { + clock format 2720069999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.541 {time zone boundary case 2056-04-02 03:00:00} {detroit y2038} { - clock format 2721884400 -format {%H:%M:%S %z %Z} \ +test clock-5.541 {time zone boundary case 2056-03-12 03:00:00} {detroit y2038} { + clock format 2720070000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.542 {time zone boundary case 2056-04-02 03:00:01} {detroit y2038} { - clock format 2721884401 -format {%H:%M:%S %z %Z} \ +test clock-5.542 {time zone boundary case 2056-03-12 03:00:01} {detroit y2038} { + clock format 2720070001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.543 {time zone boundary case 2056-10-29 01:59:59} {detroit y2038} { - clock format 2740024799 -format {%H:%M:%S %z %Z} \ +test clock-5.543 {time zone boundary case 2056-11-05 01:59:59} {detroit y2038} { + clock format 2740629599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.544 {time zone boundary case 2056-10-29 01:00:00} {detroit y2038} { - clock format 2740024800 -format {%H:%M:%S %z %Z} \ +test clock-5.544 {time zone boundary case 2056-11-05 01:00:00} {detroit y2038} { + clock format 2740629600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.545 {time zone boundary case 2056-10-29 01:00:01} {detroit y2038} { - clock format 2740024801 -format {%H:%M:%S %z %Z} \ +test clock-5.545 {time zone boundary case 2056-11-05 01:00:01} {detroit y2038} { + clock format 2740629601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.546 {time zone boundary case 2057-04-01 01:59:59} {detroit y2038} { - clock format 2753333999 -format {%H:%M:%S %z %Z} \ +test clock-5.546 {time zone boundary case 2057-03-11 01:59:59} {detroit y2038} { + clock format 2751519599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.547 {time zone boundary case 2057-04-01 03:00:00} {detroit y2038} { - clock format 2753334000 -format {%H:%M:%S %z %Z} \ +test clock-5.547 {time zone boundary case 2057-03-11 03:00:00} {detroit y2038} { + clock format 2751519600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.548 {time zone boundary case 2057-04-01 03:00:01} {detroit y2038} { - clock format 2753334001 -format {%H:%M:%S %z %Z} \ +test clock-5.548 {time zone boundary case 2057-03-11 03:00:01} {detroit y2038} { + clock format 2751519601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.549 {time zone boundary case 2057-10-28 01:59:59} {detroit y2038} { - clock format 2771474399 -format {%H:%M:%S %z %Z} \ +test clock-5.549 {time zone boundary case 2057-11-04 01:59:59} {detroit y2038} { + clock format 2772079199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.550 {time zone boundary case 2057-10-28 01:00:00} {detroit y2038} { - clock format 2771474400 -format {%H:%M:%S %z %Z} \ +test clock-5.550 {time zone boundary case 2057-11-04 01:00:00} {detroit y2038} { + clock format 2772079200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.551 {time zone boundary case 2057-10-28 01:00:01} {detroit y2038} { - clock format 2771474401 -format {%H:%M:%S %z %Z} \ +test clock-5.551 {time zone boundary case 2057-11-04 01:00:01} {detroit y2038} { + clock format 2772079201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.552 {time zone boundary case 2058-04-07 01:59:59} {detroit y2038} { - clock format 2785388399 -format {%H:%M:%S %z %Z} \ +test clock-5.552 {time zone boundary case 2058-03-10 01:59:59} {detroit y2038} { + clock format 2782969199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.553 {time zone boundary case 2058-04-07 03:00:00} {detroit y2038} { - clock format 2785388400 -format {%H:%M:%S %z %Z} \ +test clock-5.553 {time zone boundary case 2058-03-10 03:00:00} {detroit y2038} { + clock format 2782969200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.554 {time zone boundary case 2058-04-07 03:00:01} {detroit y2038} { - clock format 2785388401 -format {%H:%M:%S %z %Z} \ +test clock-5.554 {time zone boundary case 2058-03-10 03:00:01} {detroit y2038} { + clock format 2782969201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.555 {time zone boundary case 2058-10-27 01:59:59} {detroit y2038} { - clock format 2802923999 -format {%H:%M:%S %z %Z} \ +test clock-5.555 {time zone boundary case 2058-11-03 01:59:59} {detroit y2038} { + clock format 2803528799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.556 {time zone boundary case 2058-10-27 01:00:00} {detroit y2038} { - clock format 2802924000 -format {%H:%M:%S %z %Z} \ +test clock-5.556 {time zone boundary case 2058-11-03 01:00:00} {detroit y2038} { + clock format 2803528800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.557 {time zone boundary case 2058-10-27 01:00:01} {detroit y2038} { - clock format 2802924001 -format {%H:%M:%S %z %Z} \ +test clock-5.557 {time zone boundary case 2058-11-03 01:00:01} {detroit y2038} { + clock format 2803528801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.558 {time zone boundary case 2059-04-06 01:59:59} {detroit y2038} { - clock format 2816837999 -format {%H:%M:%S %z %Z} \ +test clock-5.558 {time zone boundary case 2059-03-09 01:59:59} {detroit y2038} { + clock format 2814418799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.559 {time zone boundary case 2059-04-06 03:00:00} {detroit y2038} { - clock format 2816838000 -format {%H:%M:%S %z %Z} \ +test clock-5.559 {time zone boundary case 2059-03-09 03:00:00} {detroit y2038} { + clock format 2814418800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.560 {time zone boundary case 2059-04-06 03:00:01} {detroit y2038} { - clock format 2816838001 -format {%H:%M:%S %z %Z} \ +test clock-5.560 {time zone boundary case 2059-03-09 03:00:01} {detroit y2038} { + clock format 2814418801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.561 {time zone boundary case 2059-10-26 01:59:59} {detroit y2038} { - clock format 2834373599 -format {%H:%M:%S %z %Z} \ +test clock-5.561 {time zone boundary case 2059-11-02 01:59:59} {detroit y2038} { + clock format 2834978399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.562 {time zone boundary case 2059-10-26 01:00:00} {detroit y2038} { - clock format 2834373600 -format {%H:%M:%S %z %Z} \ +test clock-5.562 {time zone boundary case 2059-11-02 01:00:00} {detroit y2038} { + clock format 2834978400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.563 {time zone boundary case 2059-10-26 01:00:01} {detroit y2038} { - clock format 2834373601 -format {%H:%M:%S %z %Z} \ +test clock-5.563 {time zone boundary case 2059-11-02 01:00:01} {detroit y2038} { + clock format 2834978401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.564 {time zone boundary case 2060-04-04 01:59:59} {detroit y2038} { - clock format 2848287599 -format {%H:%M:%S %z %Z} \ +test clock-5.564 {time zone boundary case 2060-03-14 01:59:59} {detroit y2038} { + clock format 2846473199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.565 {time zone boundary case 2060-04-04 03:00:00} {detroit y2038} { - clock format 2848287600 -format {%H:%M:%S %z %Z} \ +test clock-5.565 {time zone boundary case 2060-03-14 03:00:00} {detroit y2038} { + clock format 2846473200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.566 {time zone boundary case 2060-04-04 03:00:01} {detroit y2038} { - clock format 2848287601 -format {%H:%M:%S %z %Z} \ +test clock-5.566 {time zone boundary case 2060-03-14 03:00:01} {detroit y2038} { + clock format 2846473201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.567 {time zone boundary case 2060-10-31 01:59:59} {detroit y2038} { - clock format 2866427999 -format {%H:%M:%S %z %Z} \ +test clock-5.567 {time zone boundary case 2060-11-07 01:59:59} {detroit y2038} { + clock format 2867032799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.568 {time zone boundary case 2060-10-31 01:00:00} {detroit y2038} { - clock format 2866428000 -format {%H:%M:%S %z %Z} \ +test clock-5.568 {time zone boundary case 2060-11-07 01:00:00} {detroit y2038} { + clock format 2867032800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.569 {time zone boundary case 2060-10-31 01:00:01} {detroit y2038} { - clock format 2866428001 -format {%H:%M:%S %z %Z} \ +test clock-5.569 {time zone boundary case 2060-11-07 01:00:01} {detroit y2038} { + clock format 2867032801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.570 {time zone boundary case 2061-04-03 01:59:59} {detroit y2038} { - clock format 2879737199 -format {%H:%M:%S %z %Z} \ +test clock-5.570 {time zone boundary case 2061-03-13 01:59:59} {detroit y2038} { + clock format 2877922799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.571 {time zone boundary case 2061-04-03 03:00:00} {detroit y2038} { - clock format 2879737200 -format {%H:%M:%S %z %Z} \ +test clock-5.571 {time zone boundary case 2061-03-13 03:00:00} {detroit y2038} { + clock format 2877922800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.572 {time zone boundary case 2061-04-03 03:00:01} {detroit y2038} { - clock format 2879737201 -format {%H:%M:%S %z %Z} \ +test clock-5.572 {time zone boundary case 2061-03-13 03:00:01} {detroit y2038} { + clock format 2877922801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.573 {time zone boundary case 2061-10-30 01:59:59} {detroit y2038} { - clock format 2897877599 -format {%H:%M:%S %z %Z} \ +test clock-5.573 {time zone boundary case 2061-11-06 01:59:59} {detroit y2038} { + clock format 2898482399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.574 {time zone boundary case 2061-10-30 01:00:00} {detroit y2038} { - clock format 2897877600 -format {%H:%M:%S %z %Z} \ +test clock-5.574 {time zone boundary case 2061-11-06 01:00:00} {detroit y2038} { + clock format 2898482400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.575 {time zone boundary case 2061-10-30 01:00:01} {detroit y2038} { - clock format 2897877601 -format {%H:%M:%S %z %Z} \ +test clock-5.575 {time zone boundary case 2061-11-06 01:00:01} {detroit y2038} { + clock format 2898482401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.576 {time zone boundary case 2062-04-02 01:59:59} {detroit y2038} { - clock format 2911186799 -format {%H:%M:%S %z %Z} \ +test clock-5.576 {time zone boundary case 2062-03-12 01:59:59} {detroit y2038} { + clock format 2909372399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.577 {time zone boundary case 2062-04-02 03:00:00} {detroit y2038} { - clock format 2911186800 -format {%H:%M:%S %z %Z} \ +test clock-5.577 {time zone boundary case 2062-03-12 03:00:00} {detroit y2038} { + clock format 2909372400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.578 {time zone boundary case 2062-04-02 03:00:01} {detroit y2038} { - clock format 2911186801 -format {%H:%M:%S %z %Z} \ +test clock-5.578 {time zone boundary case 2062-03-12 03:00:01} {detroit y2038} { + clock format 2909372401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.579 {time zone boundary case 2062-10-29 01:59:59} {detroit y2038} { - clock format 2929327199 -format {%H:%M:%S %z %Z} \ +test clock-5.579 {time zone boundary case 2062-11-05 01:59:59} {detroit y2038} { + clock format 2929931999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.580 {time zone boundary case 2062-10-29 01:00:00} {detroit y2038} { - clock format 2929327200 -format {%H:%M:%S %z %Z} \ +test clock-5.580 {time zone boundary case 2062-11-05 01:00:00} {detroit y2038} { + clock format 2929932000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.581 {time zone boundary case 2062-10-29 01:00:01} {detroit y2038} { - clock format 2929327201 -format {%H:%M:%S %z %Z} \ +test clock-5.581 {time zone boundary case 2062-11-05 01:00:01} {detroit y2038} { + clock format 2929932001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.582 {time zone boundary case 2063-04-01 01:59:59} {detroit y2038} { - clock format 2942636399 -format {%H:%M:%S %z %Z} \ +test clock-5.582 {time zone boundary case 2063-03-11 01:59:59} {detroit y2038} { + clock format 2940821999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.583 {time zone boundary case 2063-04-01 03:00:00} {detroit y2038} { - clock format 2942636400 -format {%H:%M:%S %z %Z} \ +test clock-5.583 {time zone boundary case 2063-03-11 03:00:00} {detroit y2038} { + clock format 2940822000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.584 {time zone boundary case 2063-04-01 03:00:01} {detroit y2038} { - clock format 2942636401 -format {%H:%M:%S %z %Z} \ +test clock-5.584 {time zone boundary case 2063-03-11 03:00:01} {detroit y2038} { + clock format 2940822001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.585 {time zone boundary case 2063-10-28 01:59:59} {detroit y2038} { - clock format 2960776799 -format {%H:%M:%S %z %Z} \ +test clock-5.585 {time zone boundary case 2063-11-04 01:59:59} {detroit y2038} { + clock format 2961381599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.586 {time zone boundary case 2063-10-28 01:00:00} {detroit y2038} { - clock format 2960776800 -format {%H:%M:%S %z %Z} \ +test clock-5.586 {time zone boundary case 2063-11-04 01:00:00} {detroit y2038} { + clock format 2961381600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.587 {time zone boundary case 2063-10-28 01:00:01} {detroit y2038} { - clock format 2960776801 -format {%H:%M:%S %z %Z} \ +test clock-5.587 {time zone boundary case 2063-11-04 01:00:01} {detroit y2038} { + clock format 2961381601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.588 {time zone boundary case 2064-04-06 01:59:59} {detroit y2038} { - clock format 2974690799 -format {%H:%M:%S %z %Z} \ +test clock-5.588 {time zone boundary case 2064-03-09 01:59:59} {detroit y2038} { + clock format 2972271599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.589 {time zone boundary case 2064-04-06 03:00:00} {detroit y2038} { - clock format 2974690800 -format {%H:%M:%S %z %Z} \ +test clock-5.589 {time zone boundary case 2064-03-09 03:00:00} {detroit y2038} { + clock format 2972271600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.590 {time zone boundary case 2064-04-06 03:00:01} {detroit y2038} { - clock format 2974690801 -format {%H:%M:%S %z %Z} \ +test clock-5.590 {time zone boundary case 2064-03-09 03:00:01} {detroit y2038} { + clock format 2972271601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.591 {time zone boundary case 2064-10-26 01:59:59} {detroit y2038} { - clock format 2992226399 -format {%H:%M:%S %z %Z} \ +test clock-5.591 {time zone boundary case 2064-11-02 01:59:59} {detroit y2038} { + clock format 2992831199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.592 {time zone boundary case 2064-10-26 01:00:00} {detroit y2038} { - clock format 2992226400 -format {%H:%M:%S %z %Z} \ +test clock-5.592 {time zone boundary case 2064-11-02 01:00:00} {detroit y2038} { + clock format 2992831200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.593 {time zone boundary case 2064-10-26 01:00:01} {detroit y2038} { - clock format 2992226401 -format {%H:%M:%S %z %Z} \ +test clock-5.593 {time zone boundary case 2064-11-02 01:00:01} {detroit y2038} { + clock format 2992831201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.594 {time zone boundary case 2065-04-05 01:59:59} {detroit y2038} { - clock format 3006140399 -format {%H:%M:%S %z %Z} \ +test clock-5.594 {time zone boundary case 2065-03-08 01:59:59} {detroit y2038} { + clock format 3003721199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.595 {time zone boundary case 2065-04-05 03:00:00} {detroit y2038} { - clock format 3006140400 -format {%H:%M:%S %z %Z} \ +test clock-5.595 {time zone boundary case 2065-03-08 03:00:00} {detroit y2038} { + clock format 3003721200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.596 {time zone boundary case 2065-04-05 03:00:01} {detroit y2038} { - clock format 3006140401 -format {%H:%M:%S %z %Z} \ +test clock-5.596 {time zone boundary case 2065-03-08 03:00:01} {detroit y2038} { + clock format 3003721201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.597 {time zone boundary case 2065-10-25 01:59:59} {detroit y2038} { - clock format 3023675999 -format {%H:%M:%S %z %Z} \ +test clock-5.597 {time zone boundary case 2065-11-01 01:59:59} {detroit y2038} { + clock format 3024280799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.598 {time zone boundary case 2065-10-25 01:00:00} {detroit y2038} { - clock format 3023676000 -format {%H:%M:%S %z %Z} \ +test clock-5.598 {time zone boundary case 2065-11-01 01:00:00} {detroit y2038} { + clock format 3024280800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.599 {time zone boundary case 2065-10-25 01:00:01} {detroit y2038} { - clock format 3023676001 -format {%H:%M:%S %z %Z} \ +test clock-5.599 {time zone boundary case 2065-11-01 01:00:01} {detroit y2038} { + clock format 3024280801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.600 {time zone boundary case 2066-04-04 01:59:59} {detroit y2038} { - clock format 3037589999 -format {%H:%M:%S %z %Z} \ +test clock-5.600 {time zone boundary case 2066-03-14 01:59:59} {detroit y2038} { + clock format 3035775599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.601 {time zone boundary case 2066-04-04 03:00:00} {detroit y2038} { - clock format 3037590000 -format {%H:%M:%S %z %Z} \ +test clock-5.601 {time zone boundary case 2066-03-14 03:00:00} {detroit y2038} { + clock format 3035775600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.602 {time zone boundary case 2066-04-04 03:00:01} {detroit y2038} { - clock format 3037590001 -format {%H:%M:%S %z %Z} \ +test clock-5.602 {time zone boundary case 2066-03-14 03:00:01} {detroit y2038} { + clock format 3035775601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.603 {time zone boundary case 2066-10-31 01:59:59} {detroit y2038} { - clock format 3055730399 -format {%H:%M:%S %z %Z} \ +test clock-5.603 {time zone boundary case 2066-11-07 01:59:59} {detroit y2038} { + clock format 3056335199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.604 {time zone boundary case 2066-10-31 01:00:00} {detroit y2038} { - clock format 3055730400 -format {%H:%M:%S %z %Z} \ +test clock-5.604 {time zone boundary case 2066-11-07 01:00:00} {detroit y2038} { + clock format 3056335200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.605 {time zone boundary case 2066-10-31 01:00:01} {detroit y2038} { - clock format 3055730401 -format {%H:%M:%S %z %Z} \ +test clock-5.605 {time zone boundary case 2066-11-07 01:00:01} {detroit y2038} { + clock format 3056335201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.606 {time zone boundary case 2067-04-03 01:59:59} {detroit y2038} { - clock format 3069039599 -format {%H:%M:%S %z %Z} \ +test clock-5.606 {time zone boundary case 2067-03-13 01:59:59} {detroit y2038} { + clock format 3067225199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.607 {time zone boundary case 2067-04-03 03:00:00} {detroit y2038} { - clock format 3069039600 -format {%H:%M:%S %z %Z} \ +test clock-5.607 {time zone boundary case 2067-03-13 03:00:00} {detroit y2038} { + clock format 3067225200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.608 {time zone boundary case 2067-04-03 03:00:01} {detroit y2038} { - clock format 3069039601 -format {%H:%M:%S %z %Z} \ +test clock-5.608 {time zone boundary case 2067-03-13 03:00:01} {detroit y2038} { + clock format 3067225201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.609 {time zone boundary case 2067-10-30 01:59:59} {detroit y2038} { - clock format 3087179999 -format {%H:%M:%S %z %Z} \ +test clock-5.609 {time zone boundary case 2067-11-06 01:59:59} {detroit y2038} { + clock format 3087784799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.610 {time zone boundary case 2067-10-30 01:00:00} {detroit y2038} { - clock format 3087180000 -format {%H:%M:%S %z %Z} \ +test clock-5.610 {time zone boundary case 2067-11-06 01:00:00} {detroit y2038} { + clock format 3087784800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.611 {time zone boundary case 2067-10-30 01:00:01} {detroit y2038} { - clock format 3087180001 -format {%H:%M:%S %z %Z} \ +test clock-5.611 {time zone boundary case 2067-11-06 01:00:01} {detroit y2038} { + clock format 3087784801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.612 {time zone boundary case 2068-04-01 01:59:59} {detroit y2038} { - clock format 3100489199 -format {%H:%M:%S %z %Z} \ +test clock-5.612 {time zone boundary case 2068-03-11 01:59:59} {detroit y2038} { + clock format 3098674799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.613 {time zone boundary case 2068-04-01 03:00:00} {detroit y2038} { - clock format 3100489200 -format {%H:%M:%S %z %Z} \ +test clock-5.613 {time zone boundary case 2068-03-11 03:00:00} {detroit y2038} { + clock format 3098674800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.614 {time zone boundary case 2068-04-01 03:00:01} {detroit y2038} { - clock format 3100489201 -format {%H:%M:%S %z %Z} \ +test clock-5.614 {time zone boundary case 2068-03-11 03:00:01} {detroit y2038} { + clock format 3098674801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.615 {time zone boundary case 2068-10-28 01:59:59} {detroit y2038} { - clock format 3118629599 -format {%H:%M:%S %z %Z} \ +test clock-5.615 {time zone boundary case 2068-11-04 01:59:59} {detroit y2038} { + clock format 3119234399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.616 {time zone boundary case 2068-10-28 01:00:00} {detroit y2038} { - clock format 3118629600 -format {%H:%M:%S %z %Z} \ +test clock-5.616 {time zone boundary case 2068-11-04 01:00:00} {detroit y2038} { + clock format 3119234400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.617 {time zone boundary case 2068-10-28 01:00:01} {detroit y2038} { - clock format 3118629601 -format {%H:%M:%S %z %Z} \ +test clock-5.617 {time zone boundary case 2068-11-04 01:00:01} {detroit y2038} { + clock format 3119234401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.618 {time zone boundary case 2069-04-07 01:59:59} {detroit y2038} { - clock format 3132543599 -format {%H:%M:%S %z %Z} \ +test clock-5.618 {time zone boundary case 2069-03-10 01:59:59} {detroit y2038} { + clock format 3130124399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.619 {time zone boundary case 2069-04-07 03:00:00} {detroit y2038} { - clock format 3132543600 -format {%H:%M:%S %z %Z} \ +test clock-5.619 {time zone boundary case 2069-03-10 03:00:00} {detroit y2038} { + clock format 3130124400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.620 {time zone boundary case 2069-04-07 03:00:01} {detroit y2038} { - clock format 3132543601 -format {%H:%M:%S %z %Z} \ +test clock-5.620 {time zone boundary case 2069-03-10 03:00:01} {detroit y2038} { + clock format 3130124401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.621 {time zone boundary case 2069-10-27 01:59:59} {detroit y2038} { - clock format 3150079199 -format {%H:%M:%S %z %Z} \ +test clock-5.621 {time zone boundary case 2069-11-03 01:59:59} {detroit y2038} { + clock format 3150683999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.622 {time zone boundary case 2069-10-27 01:00:00} {detroit y2038} { - clock format 3150079200 -format {%H:%M:%S %z %Z} \ +test clock-5.622 {time zone boundary case 2069-11-03 01:00:00} {detroit y2038} { + clock format 3150684000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.623 {time zone boundary case 2069-10-27 01:00:01} {detroit y2038} { - clock format 3150079201 -format {%H:%M:%S %z %Z} \ +test clock-5.623 {time zone boundary case 2069-11-03 01:00:01} {detroit y2038} { + clock format 3150684001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.624 {time zone boundary case 2070-04-06 01:59:59} {detroit y2038} { - clock format 3163993199 -format {%H:%M:%S %z %Z} \ +test clock-5.624 {time zone boundary case 2070-03-09 01:59:59} {detroit y2038} { + clock format 3161573999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.625 {time zone boundary case 2070-04-06 03:00:00} {detroit y2038} { - clock format 3163993200 -format {%H:%M:%S %z %Z} \ +test clock-5.625 {time zone boundary case 2070-03-09 03:00:00} {detroit y2038} { + clock format 3161574000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.626 {time zone boundary case 2070-04-06 03:00:01} {detroit y2038} { - clock format 3163993201 -format {%H:%M:%S %z %Z} \ +test clock-5.626 {time zone boundary case 2070-03-09 03:00:01} {detroit y2038} { + clock format 3161574001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.627 {time zone boundary case 2070-10-26 01:59:59} {detroit y2038} { - clock format 3181528799 -format {%H:%M:%S %z %Z} \ +test clock-5.627 {time zone boundary case 2070-11-02 01:59:59} {detroit y2038} { + clock format 3182133599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.628 {time zone boundary case 2070-10-26 01:00:00} {detroit y2038} { - clock format 3181528800 -format {%H:%M:%S %z %Z} \ +test clock-5.628 {time zone boundary case 2070-11-02 01:00:00} {detroit y2038} { + clock format 3182133600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.629 {time zone boundary case 2070-10-26 01:00:01} {detroit y2038} { - clock format 3181528801 -format {%H:%M:%S %z %Z} \ +test clock-5.629 {time zone boundary case 2070-11-02 01:00:01} {detroit y2038} { + clock format 3182133601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.630 {time zone boundary case 2071-04-05 01:59:59} {detroit y2038} { - clock format 3195442799 -format {%H:%M:%S %z %Z} \ +test clock-5.630 {time zone boundary case 2071-03-08 01:59:59} {detroit y2038} { + clock format 3193023599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.631 {time zone boundary case 2071-04-05 03:00:00} {detroit y2038} { - clock format 3195442800 -format {%H:%M:%S %z %Z} \ +test clock-5.631 {time zone boundary case 2071-03-08 03:00:00} {detroit y2038} { + clock format 3193023600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.632 {time zone boundary case 2071-04-05 03:00:01} {detroit y2038} { - clock format 3195442801 -format {%H:%M:%S %z %Z} \ +test clock-5.632 {time zone boundary case 2071-03-08 03:00:01} {detroit y2038} { + clock format 3193023601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.633 {time zone boundary case 2071-10-25 01:59:59} {detroit y2038} { - clock format 3212978399 -format {%H:%M:%S %z %Z} \ +test clock-5.633 {time zone boundary case 2071-11-01 01:59:59} {detroit y2038} { + clock format 3213583199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.634 {time zone boundary case 2071-10-25 01:00:00} {detroit y2038} { - clock format 3212978400 -format {%H:%M:%S %z %Z} \ +test clock-5.634 {time zone boundary case 2071-11-01 01:00:00} {detroit y2038} { + clock format 3213583200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.635 {time zone boundary case 2071-10-25 01:00:01} {detroit y2038} { - clock format 3212978401 -format {%H:%M:%S %z %Z} \ +test clock-5.635 {time zone boundary case 2071-11-01 01:00:01} {detroit y2038} { + clock format 3213583201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.636 {time zone boundary case 2072-04-03 01:59:59} {detroit y2038} { - clock format 3226892399 -format {%H:%M:%S %z %Z} \ +test clock-5.636 {time zone boundary case 2072-03-13 01:59:59} {detroit y2038} { + clock format 3225077999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.637 {time zone boundary case 2072-04-03 03:00:00} {detroit y2038} { - clock format 3226892400 -format {%H:%M:%S %z %Z} \ +test clock-5.637 {time zone boundary case 2072-03-13 03:00:00} {detroit y2038} { + clock format 3225078000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.638 {time zone boundary case 2072-04-03 03:00:01} {detroit y2038} { - clock format 3226892401 -format {%H:%M:%S %z %Z} \ +test clock-5.638 {time zone boundary case 2072-03-13 03:00:01} {detroit y2038} { + clock format 3225078001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.639 {time zone boundary case 2072-10-30 01:59:59} {detroit y2038} { - clock format 3245032799 -format {%H:%M:%S %z %Z} \ +test clock-5.639 {time zone boundary case 2072-11-06 01:59:59} {detroit y2038} { + clock format 3245637599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.640 {time zone boundary case 2072-10-30 01:00:00} {detroit y2038} { - clock format 3245032800 -format {%H:%M:%S %z %Z} \ +test clock-5.640 {time zone boundary case 2072-11-06 01:00:00} {detroit y2038} { + clock format 3245637600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.641 {time zone boundary case 2072-10-30 01:00:01} {detroit y2038} { - clock format 3245032801 -format {%H:%M:%S %z %Z} \ +test clock-5.641 {time zone boundary case 2072-11-06 01:00:01} {detroit y2038} { + clock format 3245637601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.642 {time zone boundary case 2073-04-02 01:59:59} {detroit y2038} { - clock format 3258341999 -format {%H:%M:%S %z %Z} \ +test clock-5.642 {time zone boundary case 2073-03-12 01:59:59} {detroit y2038} { + clock format 3256527599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.643 {time zone boundary case 2073-04-02 03:00:00} {detroit y2038} { - clock format 3258342000 -format {%H:%M:%S %z %Z} \ +test clock-5.643 {time zone boundary case 2073-03-12 03:00:00} {detroit y2038} { + clock format 3256527600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.644 {time zone boundary case 2073-04-02 03:00:01} {detroit y2038} { - clock format 3258342001 -format {%H:%M:%S %z %Z} \ +test clock-5.644 {time zone boundary case 2073-03-12 03:00:01} {detroit y2038} { + clock format 3256527601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.645 {time zone boundary case 2073-10-29 01:59:59} {detroit y2038} { - clock format 3276482399 -format {%H:%M:%S %z %Z} \ +test clock-5.645 {time zone boundary case 2073-11-05 01:59:59} {detroit y2038} { + clock format 3277087199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.646 {time zone boundary case 2073-10-29 01:00:00} {detroit y2038} { - clock format 3276482400 -format {%H:%M:%S %z %Z} \ +test clock-5.646 {time zone boundary case 2073-11-05 01:00:00} {detroit y2038} { + clock format 3277087200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.647 {time zone boundary case 2073-10-29 01:00:01} {detroit y2038} { - clock format 3276482401 -format {%H:%M:%S %z %Z} \ +test clock-5.647 {time zone boundary case 2073-11-05 01:00:01} {detroit y2038} { + clock format 3277087201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.648 {time zone boundary case 2074-04-01 01:59:59} {detroit y2038} { - clock format 3289791599 -format {%H:%M:%S %z %Z} \ +test clock-5.648 {time zone boundary case 2074-03-11 01:59:59} {detroit y2038} { + clock format 3287977199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.649 {time zone boundary case 2074-04-01 03:00:00} {detroit y2038} { - clock format 3289791600 -format {%H:%M:%S %z %Z} \ +test clock-5.649 {time zone boundary case 2074-03-11 03:00:00} {detroit y2038} { + clock format 3287977200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.650 {time zone boundary case 2074-04-01 03:00:01} {detroit y2038} { - clock format 3289791601 -format {%H:%M:%S %z %Z} \ +test clock-5.650 {time zone boundary case 2074-03-11 03:00:01} {detroit y2038} { + clock format 3287977201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.651 {time zone boundary case 2074-10-28 01:59:59} {detroit y2038} { - clock format 3307931999 -format {%H:%M:%S %z %Z} \ +test clock-5.651 {time zone boundary case 2074-11-04 01:59:59} {detroit y2038} { + clock format 3308536799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.652 {time zone boundary case 2074-10-28 01:00:00} {detroit y2038} { - clock format 3307932000 -format {%H:%M:%S %z %Z} \ +test clock-5.652 {time zone boundary case 2074-11-04 01:00:00} {detroit y2038} { + clock format 3308536800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.653 {time zone boundary case 2074-10-28 01:00:01} {detroit y2038} { - clock format 3307932001 -format {%H:%M:%S %z %Z} \ +test clock-5.653 {time zone boundary case 2074-11-04 01:00:01} {detroit y2038} { + clock format 3308536801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.654 {time zone boundary case 2075-04-07 01:59:59} {detroit y2038} { - clock format 3321845999 -format {%H:%M:%S %z %Z} \ +test clock-5.654 {time zone boundary case 2075-03-10 01:59:59} {detroit y2038} { + clock format 3319426799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.655 {time zone boundary case 2075-04-07 03:00:00} {detroit y2038} { - clock format 3321846000 -format {%H:%M:%S %z %Z} \ +test clock-5.655 {time zone boundary case 2075-03-10 03:00:00} {detroit y2038} { + clock format 3319426800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.656 {time zone boundary case 2075-04-07 03:00:01} {detroit y2038} { - clock format 3321846001 -format {%H:%M:%S %z %Z} \ +test clock-5.656 {time zone boundary case 2075-03-10 03:00:01} {detroit y2038} { + clock format 3319426801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.657 {time zone boundary case 2075-10-27 01:59:59} {detroit y2038} { - clock format 3339381599 -format {%H:%M:%S %z %Z} \ +test clock-5.657 {time zone boundary case 2075-11-03 01:59:59} {detroit y2038} { + clock format 3339986399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.658 {time zone boundary case 2075-10-27 01:00:00} {detroit y2038} { - clock format 3339381600 -format {%H:%M:%S %z %Z} \ +test clock-5.658 {time zone boundary case 2075-11-03 01:00:00} {detroit y2038} { + clock format 3339986400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.659 {time zone boundary case 2075-10-27 01:00:01} {detroit y2038} { - clock format 3339381601 -format {%H:%M:%S %z %Z} \ +test clock-5.659 {time zone boundary case 2075-11-03 01:00:01} {detroit y2038} { + clock format 3339986401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.660 {time zone boundary case 2076-04-05 01:59:59} {detroit y2038} { - clock format 3353295599 -format {%H:%M:%S %z %Z} \ +test clock-5.660 {time zone boundary case 2076-03-08 01:59:59} {detroit y2038} { + clock format 3350876399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.661 {time zone boundary case 2076-04-05 03:00:00} {detroit y2038} { - clock format 3353295600 -format {%H:%M:%S %z %Z} \ +test clock-5.661 {time zone boundary case 2076-03-08 03:00:00} {detroit y2038} { + clock format 3350876400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.662 {time zone boundary case 2076-04-05 03:00:01} {detroit y2038} { - clock format 3353295601 -format {%H:%M:%S %z %Z} \ +test clock-5.662 {time zone boundary case 2076-03-08 03:00:01} {detroit y2038} { + clock format 3350876401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.663 {time zone boundary case 2076-10-25 01:59:59} {detroit y2038} { - clock format 3370831199 -format {%H:%M:%S %z %Z} \ +test clock-5.663 {time zone boundary case 2076-11-01 01:59:59} {detroit y2038} { + clock format 3371435999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.664 {time zone boundary case 2076-10-25 01:00:00} {detroit y2038} { - clock format 3370831200 -format {%H:%M:%S %z %Z} \ +test clock-5.664 {time zone boundary case 2076-11-01 01:00:00} {detroit y2038} { + clock format 3371436000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.665 {time zone boundary case 2076-10-25 01:00:01} {detroit y2038} { - clock format 3370831201 -format {%H:%M:%S %z %Z} \ +test clock-5.665 {time zone boundary case 2076-11-01 01:00:01} {detroit y2038} { + clock format 3371436001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.666 {time zone boundary case 2077-04-04 01:59:59} {detroit y2038} { - clock format 3384745199 -format {%H:%M:%S %z %Z} \ +test clock-5.666 {time zone boundary case 2077-03-14 01:59:59} {detroit y2038} { + clock format 3382930799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.667 {time zone boundary case 2077-04-04 03:00:00} {detroit y2038} { - clock format 3384745200 -format {%H:%M:%S %z %Z} \ +test clock-5.667 {time zone boundary case 2077-03-14 03:00:00} {detroit y2038} { + clock format 3382930800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.668 {time zone boundary case 2077-04-04 03:00:01} {detroit y2038} { - clock format 3384745201 -format {%H:%M:%S %z %Z} \ +test clock-5.668 {time zone boundary case 2077-03-14 03:00:01} {detroit y2038} { + clock format 3382930801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.669 {time zone boundary case 2077-10-31 01:59:59} {detroit y2038} { - clock format 3402885599 -format {%H:%M:%S %z %Z} \ +test clock-5.669 {time zone boundary case 2077-11-07 01:59:59} {detroit y2038} { + clock format 3403490399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.670 {time zone boundary case 2077-10-31 01:00:00} {detroit y2038} { - clock format 3402885600 -format {%H:%M:%S %z %Z} \ +test clock-5.670 {time zone boundary case 2077-11-07 01:00:00} {detroit y2038} { + clock format 3403490400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.671 {time zone boundary case 2077-10-31 01:00:01} {detroit y2038} { - clock format 3402885601 -format {%H:%M:%S %z %Z} \ +test clock-5.671 {time zone boundary case 2077-11-07 01:00:01} {detroit y2038} { + clock format 3403490401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.672 {time zone boundary case 2078-04-03 01:59:59} {detroit y2038} { - clock format 3416194799 -format {%H:%M:%S %z %Z} \ +test clock-5.672 {time zone boundary case 2078-03-13 01:59:59} {detroit y2038} { + clock format 3414380399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.673 {time zone boundary case 2078-04-03 03:00:00} {detroit y2038} { - clock format 3416194800 -format {%H:%M:%S %z %Z} \ +test clock-5.673 {time zone boundary case 2078-03-13 03:00:00} {detroit y2038} { + clock format 3414380400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.674 {time zone boundary case 2078-04-03 03:00:01} {detroit y2038} { - clock format 3416194801 -format {%H:%M:%S %z %Z} \ +test clock-5.674 {time zone boundary case 2078-03-13 03:00:01} {detroit y2038} { + clock format 3414380401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.675 {time zone boundary case 2078-10-30 01:59:59} {detroit y2038} { - clock format 3434335199 -format {%H:%M:%S %z %Z} \ +test clock-5.675 {time zone boundary case 2078-11-06 01:59:59} {detroit y2038} { + clock format 3434939999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.676 {time zone boundary case 2078-10-30 01:00:00} {detroit y2038} { - clock format 3434335200 -format {%H:%M:%S %z %Z} \ +test clock-5.676 {time zone boundary case 2078-11-06 01:00:00} {detroit y2038} { + clock format 3434940000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.677 {time zone boundary case 2078-10-30 01:00:01} {detroit y2038} { - clock format 3434335201 -format {%H:%M:%S %z %Z} \ +test clock-5.677 {time zone boundary case 2078-11-06 01:00:01} {detroit y2038} { + clock format 3434940001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.678 {time zone boundary case 2079-04-02 01:59:59} {detroit y2038} { - clock format 3447644399 -format {%H:%M:%S %z %Z} \ +test clock-5.678 {time zone boundary case 2079-03-12 01:59:59} {detroit y2038} { + clock format 3445829999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.679 {time zone boundary case 2079-04-02 03:00:00} {detroit y2038} { - clock format 3447644400 -format {%H:%M:%S %z %Z} \ +test clock-5.679 {time zone boundary case 2079-03-12 03:00:00} {detroit y2038} { + clock format 3445830000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.680 {time zone boundary case 2079-04-02 03:00:01} {detroit y2038} { - clock format 3447644401 -format {%H:%M:%S %z %Z} \ +test clock-5.680 {time zone boundary case 2079-03-12 03:00:01} {detroit y2038} { + clock format 3445830001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.681 {time zone boundary case 2079-10-29 01:59:59} {detroit y2038} { - clock format 3465784799 -format {%H:%M:%S %z %Z} \ +test clock-5.681 {time zone boundary case 2079-11-05 01:59:59} {detroit y2038} { + clock format 3466389599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.682 {time zone boundary case 2079-10-29 01:00:00} {detroit y2038} { - clock format 3465784800 -format {%H:%M:%S %z %Z} \ +test clock-5.682 {time zone boundary case 2079-11-05 01:00:00} {detroit y2038} { + clock format 3466389600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.683 {time zone boundary case 2079-10-29 01:00:01} {detroit y2038} { - clock format 3465784801 -format {%H:%M:%S %z %Z} \ +test clock-5.683 {time zone boundary case 2079-11-05 01:00:01} {detroit y2038} { + clock format 3466389601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.684 {time zone boundary case 2080-04-07 01:59:59} {detroit y2038} { - clock format 3479698799 -format {%H:%M:%S %z %Z} \ +test clock-5.684 {time zone boundary case 2080-03-10 01:59:59} {detroit y2038} { + clock format 3477279599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.685 {time zone boundary case 2080-04-07 03:00:00} {detroit y2038} { - clock format 3479698800 -format {%H:%M:%S %z %Z} \ +test clock-5.685 {time zone boundary case 2080-03-10 03:00:00} {detroit y2038} { + clock format 3477279600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.686 {time zone boundary case 2080-04-07 03:00:01} {detroit y2038} { - clock format 3479698801 -format {%H:%M:%S %z %Z} \ +test clock-5.686 {time zone boundary case 2080-03-10 03:00:01} {detroit y2038} { + clock format 3477279601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.687 {time zone boundary case 2080-10-27 01:59:59} {detroit y2038} { - clock format 3497234399 -format {%H:%M:%S %z %Z} \ +test clock-5.687 {time zone boundary case 2080-11-03 01:59:59} {detroit y2038} { + clock format 3497839199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.688 {time zone boundary case 2080-10-27 01:00:00} {detroit y2038} { - clock format 3497234400 -format {%H:%M:%S %z %Z} \ +test clock-5.688 {time zone boundary case 2080-11-03 01:00:00} {detroit y2038} { + clock format 3497839200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.689 {time zone boundary case 2080-10-27 01:00:01} {detroit y2038} { - clock format 3497234401 -format {%H:%M:%S %z %Z} \ +test clock-5.689 {time zone boundary case 2080-11-03 01:00:01} {detroit y2038} { + clock format 3497839201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.690 {time zone boundary case 2081-04-06 01:59:59} {detroit y2038} { - clock format 3511148399 -format {%H:%M:%S %z %Z} \ +test clock-5.690 {time zone boundary case 2081-03-09 01:59:59} {detroit y2038} { + clock format 3508729199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.691 {time zone boundary case 2081-04-06 03:00:00} {detroit y2038} { - clock format 3511148400 -format {%H:%M:%S %z %Z} \ +test clock-5.691 {time zone boundary case 2081-03-09 03:00:00} {detroit y2038} { + clock format 3508729200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.692 {time zone boundary case 2081-04-06 03:00:01} {detroit y2038} { - clock format 3511148401 -format {%H:%M:%S %z %Z} \ +test clock-5.692 {time zone boundary case 2081-03-09 03:00:01} {detroit y2038} { + clock format 3508729201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.693 {time zone boundary case 2081-10-26 01:59:59} {detroit y2038} { - clock format 3528683999 -format {%H:%M:%S %z %Z} \ +test clock-5.693 {time zone boundary case 2081-11-02 01:59:59} {detroit y2038} { + clock format 3529288799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.694 {time zone boundary case 2081-10-26 01:00:00} {detroit y2038} { - clock format 3528684000 -format {%H:%M:%S %z %Z} \ +test clock-5.694 {time zone boundary case 2081-11-02 01:00:00} {detroit y2038} { + clock format 3529288800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.695 {time zone boundary case 2081-10-26 01:00:01} {detroit y2038} { - clock format 3528684001 -format {%H:%M:%S %z %Z} \ +test clock-5.695 {time zone boundary case 2081-11-02 01:00:01} {detroit y2038} { + clock format 3529288801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.696 {time zone boundary case 2082-04-05 01:59:59} {detroit y2038} { - clock format 3542597999 -format {%H:%M:%S %z %Z} \ +test clock-5.696 {time zone boundary case 2082-03-08 01:59:59} {detroit y2038} { + clock format 3540178799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.697 {time zone boundary case 2082-04-05 03:00:00} {detroit y2038} { - clock format 3542598000 -format {%H:%M:%S %z %Z} \ +test clock-5.697 {time zone boundary case 2082-03-08 03:00:00} {detroit y2038} { + clock format 3540178800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.698 {time zone boundary case 2082-04-05 03:00:01} {detroit y2038} { - clock format 3542598001 -format {%H:%M:%S %z %Z} \ +test clock-5.698 {time zone boundary case 2082-03-08 03:00:01} {detroit y2038} { + clock format 3540178801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.699 {time zone boundary case 2082-10-25 01:59:59} {detroit y2038} { - clock format 3560133599 -format {%H:%M:%S %z %Z} \ +test clock-5.699 {time zone boundary case 2082-11-01 01:59:59} {detroit y2038} { + clock format 3560738399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.700 {time zone boundary case 2082-10-25 01:00:00} {detroit y2038} { - clock format 3560133600 -format {%H:%M:%S %z %Z} \ +test clock-5.700 {time zone boundary case 2082-11-01 01:00:00} {detroit y2038} { + clock format 3560738400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.701 {time zone boundary case 2082-10-25 01:00:01} {detroit y2038} { - clock format 3560133601 -format {%H:%M:%S %z %Z} \ +test clock-5.701 {time zone boundary case 2082-11-01 01:00:01} {detroit y2038} { + clock format 3560738401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.702 {time zone boundary case 2083-04-04 01:59:59} {detroit y2038} { - clock format 3574047599 -format {%H:%M:%S %z %Z} \ +test clock-5.702 {time zone boundary case 2083-03-14 01:59:59} {detroit y2038} { + clock format 3572233199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.703 {time zone boundary case 2083-04-04 03:00:00} {detroit y2038} { - clock format 3574047600 -format {%H:%M:%S %z %Z} \ +test clock-5.703 {time zone boundary case 2083-03-14 03:00:00} {detroit y2038} { + clock format 3572233200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.704 {time zone boundary case 2083-04-04 03:00:01} {detroit y2038} { - clock format 3574047601 -format {%H:%M:%S %z %Z} \ +test clock-5.704 {time zone boundary case 2083-03-14 03:00:01} {detroit y2038} { + clock format 3572233201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.705 {time zone boundary case 2083-10-31 01:59:59} {detroit y2038} { - clock format 3592187999 -format {%H:%M:%S %z %Z} \ +test clock-5.705 {time zone boundary case 2083-11-07 01:59:59} {detroit y2038} { + clock format 3592792799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.706 {time zone boundary case 2083-10-31 01:00:00} {detroit y2038} { - clock format 3592188000 -format {%H:%M:%S %z %Z} \ +test clock-5.706 {time zone boundary case 2083-11-07 01:00:00} {detroit y2038} { + clock format 3592792800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.707 {time zone boundary case 2083-10-31 01:00:01} {detroit y2038} { - clock format 3592188001 -format {%H:%M:%S %z %Z} \ +test clock-5.707 {time zone boundary case 2083-11-07 01:00:01} {detroit y2038} { + clock format 3592792801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.708 {time zone boundary case 2084-04-02 01:59:59} {detroit y2038} { - clock format 3605497199 -format {%H:%M:%S %z %Z} \ +test clock-5.708 {time zone boundary case 2084-03-12 01:59:59} {detroit y2038} { + clock format 3603682799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.709 {time zone boundary case 2084-04-02 03:00:00} {detroit y2038} { - clock format 3605497200 -format {%H:%M:%S %z %Z} \ +test clock-5.709 {time zone boundary case 2084-03-12 03:00:00} {detroit y2038} { + clock format 3603682800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.710 {time zone boundary case 2084-04-02 03:00:01} {detroit y2038} { - clock format 3605497201 -format {%H:%M:%S %z %Z} \ +test clock-5.710 {time zone boundary case 2084-03-12 03:00:01} {detroit y2038} { + clock format 3603682801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.711 {time zone boundary case 2084-10-29 01:59:59} {detroit y2038} { - clock format 3623637599 -format {%H:%M:%S %z %Z} \ +test clock-5.711 {time zone boundary case 2084-11-05 01:59:59} {detroit y2038} { + clock format 3624242399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.712 {time zone boundary case 2084-10-29 01:00:00} {detroit y2038} { - clock format 3623637600 -format {%H:%M:%S %z %Z} \ +test clock-5.712 {time zone boundary case 2084-11-05 01:00:00} {detroit y2038} { + clock format 3624242400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.713 {time zone boundary case 2084-10-29 01:00:01} {detroit y2038} { - clock format 3623637601 -format {%H:%M:%S %z %Z} \ +test clock-5.713 {time zone boundary case 2084-11-05 01:00:01} {detroit y2038} { + clock format 3624242401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.714 {time zone boundary case 2085-04-01 01:59:59} {detroit y2038} { - clock format 3636946799 -format {%H:%M:%S %z %Z} \ +test clock-5.714 {time zone boundary case 2085-03-11 01:59:59} {detroit y2038} { + clock format 3635132399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.715 {time zone boundary case 2085-04-01 03:00:00} {detroit y2038} { - clock format 3636946800 -format {%H:%M:%S %z %Z} \ +test clock-5.715 {time zone boundary case 2085-03-11 03:00:00} {detroit y2038} { + clock format 3635132400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.716 {time zone boundary case 2085-04-01 03:00:01} {detroit y2038} { - clock format 3636946801 -format {%H:%M:%S %z %Z} \ +test clock-5.716 {time zone boundary case 2085-03-11 03:00:01} {detroit y2038} { + clock format 3635132401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.717 {time zone boundary case 2085-10-28 01:59:59} {detroit y2038} { - clock format 3655087199 -format {%H:%M:%S %z %Z} \ +test clock-5.717 {time zone boundary case 2085-11-04 01:59:59} {detroit y2038} { + clock format 3655691999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.718 {time zone boundary case 2085-10-28 01:00:00} {detroit y2038} { - clock format 3655087200 -format {%H:%M:%S %z %Z} \ +test clock-5.718 {time zone boundary case 2085-11-04 01:00:00} {detroit y2038} { + clock format 3655692000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.719 {time zone boundary case 2085-10-28 01:00:01} {detroit y2038} { - clock format 3655087201 -format {%H:%M:%S %z %Z} \ +test clock-5.719 {time zone boundary case 2085-11-04 01:00:01} {detroit y2038} { + clock format 3655692001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.720 {time zone boundary case 2086-04-07 01:59:59} {detroit y2038} { - clock format 3669001199 -format {%H:%M:%S %z %Z} \ +test clock-5.720 {time zone boundary case 2086-03-10 01:59:59} {detroit y2038} { + clock format 3666581999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.721 {time zone boundary case 2086-04-07 03:00:00} {detroit y2038} { - clock format 3669001200 -format {%H:%M:%S %z %Z} \ +test clock-5.721 {time zone boundary case 2086-03-10 03:00:00} {detroit y2038} { + clock format 3666582000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.722 {time zone boundary case 2086-04-07 03:00:01} {detroit y2038} { - clock format 3669001201 -format {%H:%M:%S %z %Z} \ +test clock-5.722 {time zone boundary case 2086-03-10 03:00:01} {detroit y2038} { + clock format 3666582001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.723 {time zone boundary case 2086-10-27 01:59:59} {detroit y2038} { - clock format 3686536799 -format {%H:%M:%S %z %Z} \ +test clock-5.723 {time zone boundary case 2086-11-03 01:59:59} {detroit y2038} { + clock format 3687141599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.724 {time zone boundary case 2086-10-27 01:00:00} {detroit y2038} { - clock format 3686536800 -format {%H:%M:%S %z %Z} \ +test clock-5.724 {time zone boundary case 2086-11-03 01:00:00} {detroit y2038} { + clock format 3687141600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.725 {time zone boundary case 2086-10-27 01:00:01} {detroit y2038} { - clock format 3686536801 -format {%H:%M:%S %z %Z} \ +test clock-5.725 {time zone boundary case 2086-11-03 01:00:01} {detroit y2038} { + clock format 3687141601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.726 {time zone boundary case 2087-04-06 01:59:59} {detroit y2038} { - clock format 3700450799 -format {%H:%M:%S %z %Z} \ +test clock-5.726 {time zone boundary case 2087-03-09 01:59:59} {detroit y2038} { + clock format 3698031599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.727 {time zone boundary case 2087-04-06 03:00:00} {detroit y2038} { - clock format 3700450800 -format {%H:%M:%S %z %Z} \ +test clock-5.727 {time zone boundary case 2087-03-09 03:00:00} {detroit y2038} { + clock format 3698031600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.728 {time zone boundary case 2087-04-06 03:00:01} {detroit y2038} { - clock format 3700450801 -format {%H:%M:%S %z %Z} \ +test clock-5.728 {time zone boundary case 2087-03-09 03:00:01} {detroit y2038} { + clock format 3698031601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.729 {time zone boundary case 2087-10-26 01:59:59} {detroit y2038} { - clock format 3717986399 -format {%H:%M:%S %z %Z} \ +test clock-5.729 {time zone boundary case 2087-11-02 01:59:59} {detroit y2038} { + clock format 3718591199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.730 {time zone boundary case 2087-10-26 01:00:00} {detroit y2038} { - clock format 3717986400 -format {%H:%M:%S %z %Z} \ +test clock-5.730 {time zone boundary case 2087-11-02 01:00:00} {detroit y2038} { + clock format 3718591200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.731 {time zone boundary case 2087-10-26 01:00:01} {detroit y2038} { - clock format 3717986401 -format {%H:%M:%S %z %Z} \ +test clock-5.731 {time zone boundary case 2087-11-02 01:00:01} {detroit y2038} { + clock format 3718591201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.732 {time zone boundary case 2088-04-04 01:59:59} {detroit y2038} { - clock format 3731900399 -format {%H:%M:%S %z %Z} \ +test clock-5.732 {time zone boundary case 2088-03-14 01:59:59} {detroit y2038} { + clock format 3730085999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.733 {time zone boundary case 2088-04-04 03:00:00} {detroit y2038} { - clock format 3731900400 -format {%H:%M:%S %z %Z} \ +test clock-5.733 {time zone boundary case 2088-03-14 03:00:00} {detroit y2038} { + clock format 3730086000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.734 {time zone boundary case 2088-04-04 03:00:01} {detroit y2038} { - clock format 3731900401 -format {%H:%M:%S %z %Z} \ +test clock-5.734 {time zone boundary case 2088-03-14 03:00:01} {detroit y2038} { + clock format 3730086001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.735 {time zone boundary case 2088-10-31 01:59:59} {detroit y2038} { - clock format 3750040799 -format {%H:%M:%S %z %Z} \ +test clock-5.735 {time zone boundary case 2088-11-07 01:59:59} {detroit y2038} { + clock format 3750645599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.736 {time zone boundary case 2088-10-31 01:00:00} {detroit y2038} { - clock format 3750040800 -format {%H:%M:%S %z %Z} \ +test clock-5.736 {time zone boundary case 2088-11-07 01:00:00} {detroit y2038} { + clock format 3750645600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.737 {time zone boundary case 2088-10-31 01:00:01} {detroit y2038} { - clock format 3750040801 -format {%H:%M:%S %z %Z} \ +test clock-5.737 {time zone boundary case 2088-11-07 01:00:01} {detroit y2038} { + clock format 3750645601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.738 {time zone boundary case 2089-04-03 01:59:59} {detroit y2038} { - clock format 3763349999 -format {%H:%M:%S %z %Z} \ +test clock-5.738 {time zone boundary case 2089-03-13 01:59:59} {detroit y2038} { + clock format 3761535599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.739 {time zone boundary case 2089-04-03 03:00:00} {detroit y2038} { - clock format 3763350000 -format {%H:%M:%S %z %Z} \ +test clock-5.739 {time zone boundary case 2089-03-13 03:00:00} {detroit y2038} { + clock format 3761535600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.740 {time zone boundary case 2089-04-03 03:00:01} {detroit y2038} { - clock format 3763350001 -format {%H:%M:%S %z %Z} \ +test clock-5.740 {time zone boundary case 2089-03-13 03:00:01} {detroit y2038} { + clock format 3761535601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.741 {time zone boundary case 2089-10-30 01:59:59} {detroit y2038} { - clock format 3781490399 -format {%H:%M:%S %z %Z} \ +test clock-5.741 {time zone boundary case 2089-11-06 01:59:59} {detroit y2038} { + clock format 3782095199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.742 {time zone boundary case 2089-10-30 01:00:00} {detroit y2038} { - clock format 3781490400 -format {%H:%M:%S %z %Z} \ +test clock-5.742 {time zone boundary case 2089-11-06 01:00:00} {detroit y2038} { + clock format 3782095200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.743 {time zone boundary case 2089-10-30 01:00:01} {detroit y2038} { - clock format 3781490401 -format {%H:%M:%S %z %Z} \ +test clock-5.743 {time zone boundary case 2089-11-06 01:00:01} {detroit y2038} { + clock format 3782095201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.744 {time zone boundary case 2090-04-02 01:59:59} {detroit y2038} { - clock format 3794799599 -format {%H:%M:%S %z %Z} \ +test clock-5.744 {time zone boundary case 2090-03-12 01:59:59} {detroit y2038} { + clock format 3792985199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.745 {time zone boundary case 2090-04-02 03:00:00} {detroit y2038} { - clock format 3794799600 -format {%H:%M:%S %z %Z} \ +test clock-5.745 {time zone boundary case 2090-03-12 03:00:00} {detroit y2038} { + clock format 3792985200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.746 {time zone boundary case 2090-04-02 03:00:01} {detroit y2038} { - clock format 3794799601 -format {%H:%M:%S %z %Z} \ +test clock-5.746 {time zone boundary case 2090-03-12 03:00:01} {detroit y2038} { + clock format 3792985201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.747 {time zone boundary case 2090-10-29 01:59:59} {detroit y2038} { - clock format 3812939999 -format {%H:%M:%S %z %Z} \ +test clock-5.747 {time zone boundary case 2090-11-05 01:59:59} {detroit y2038} { + clock format 3813544799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.748 {time zone boundary case 2090-10-29 01:00:00} {detroit y2038} { - clock format 3812940000 -format {%H:%M:%S %z %Z} \ +test clock-5.748 {time zone boundary case 2090-11-05 01:00:00} {detroit y2038} { + clock format 3813544800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.749 {time zone boundary case 2090-10-29 01:00:01} {detroit y2038} { - clock format 3812940001 -format {%H:%M:%S %z %Z} \ +test clock-5.749 {time zone boundary case 2090-11-05 01:00:01} {detroit y2038} { + clock format 3813544801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.750 {time zone boundary case 2091-04-01 01:59:59} {detroit y2038} { - clock format 3826249199 -format {%H:%M:%S %z %Z} \ +test clock-5.750 {time zone boundary case 2091-03-11 01:59:59} {detroit y2038} { + clock format 3824434799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.751 {time zone boundary case 2091-04-01 03:00:00} {detroit y2038} { - clock format 3826249200 -format {%H:%M:%S %z %Z} \ +test clock-5.751 {time zone boundary case 2091-03-11 03:00:00} {detroit y2038} { + clock format 3824434800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.752 {time zone boundary case 2091-04-01 03:00:01} {detroit y2038} { - clock format 3826249201 -format {%H:%M:%S %z %Z} \ +test clock-5.752 {time zone boundary case 2091-03-11 03:00:01} {detroit y2038} { + clock format 3824434801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.753 {time zone boundary case 2091-10-28 01:59:59} {detroit y2038} { - clock format 3844389599 -format {%H:%M:%S %z %Z} \ +test clock-5.753 {time zone boundary case 2091-11-04 01:59:59} {detroit y2038} { + clock format 3844994399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.754 {time zone boundary case 2091-10-28 01:00:00} {detroit y2038} { - clock format 3844389600 -format {%H:%M:%S %z %Z} \ +test clock-5.754 {time zone boundary case 2091-11-04 01:00:00} {detroit y2038} { + clock format 3844994400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.755 {time zone boundary case 2091-10-28 01:00:01} {detroit y2038} { - clock format 3844389601 -format {%H:%M:%S %z %Z} \ +test clock-5.755 {time zone boundary case 2091-11-04 01:00:01} {detroit y2038} { + clock format 3844994401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.756 {time zone boundary case 2092-04-06 01:59:59} {detroit y2038} { - clock format 3858303599 -format {%H:%M:%S %z %Z} \ +test clock-5.756 {time zone boundary case 2092-03-09 01:59:59} {detroit y2038} { + clock format 3855884399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.757 {time zone boundary case 2092-04-06 03:00:00} {detroit y2038} { - clock format 3858303600 -format {%H:%M:%S %z %Z} \ +test clock-5.757 {time zone boundary case 2092-03-09 03:00:00} {detroit y2038} { + clock format 3855884400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.758 {time zone boundary case 2092-04-06 03:00:01} {detroit y2038} { - clock format 3858303601 -format {%H:%M:%S %z %Z} \ +test clock-5.758 {time zone boundary case 2092-03-09 03:00:01} {detroit y2038} { + clock format 3855884401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.759 {time zone boundary case 2092-10-26 01:59:59} {detroit y2038} { - clock format 3875839199 -format {%H:%M:%S %z %Z} \ +test clock-5.759 {time zone boundary case 2092-11-02 01:59:59} {detroit y2038} { + clock format 3876443999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.760 {time zone boundary case 2092-10-26 01:00:00} {detroit y2038} { - clock format 3875839200 -format {%H:%M:%S %z %Z} \ +test clock-5.760 {time zone boundary case 2092-11-02 01:00:00} {detroit y2038} { + clock format 3876444000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.761 {time zone boundary case 2092-10-26 01:00:01} {detroit y2038} { - clock format 3875839201 -format {%H:%M:%S %z %Z} \ +test clock-5.761 {time zone boundary case 2092-11-02 01:00:01} {detroit y2038} { + clock format 3876444001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.762 {time zone boundary case 2093-04-05 01:59:59} {detroit y2038} { - clock format 3889753199 -format {%H:%M:%S %z %Z} \ +test clock-5.762 {time zone boundary case 2093-03-08 01:59:59} {detroit y2038} { + clock format 3887333999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.763 {time zone boundary case 2093-04-05 03:00:00} {detroit y2038} { - clock format 3889753200 -format {%H:%M:%S %z %Z} \ +test clock-5.763 {time zone boundary case 2093-03-08 03:00:00} {detroit y2038} { + clock format 3887334000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.764 {time zone boundary case 2093-04-05 03:00:01} {detroit y2038} { - clock format 3889753201 -format {%H:%M:%S %z %Z} \ +test clock-5.764 {time zone boundary case 2093-03-08 03:00:01} {detroit y2038} { + clock format 3887334001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.765 {time zone boundary case 2093-10-25 01:59:59} {detroit y2038} { - clock format 3907288799 -format {%H:%M:%S %z %Z} \ +test clock-5.765 {time zone boundary case 2093-11-01 01:59:59} {detroit y2038} { + clock format 3907893599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.766 {time zone boundary case 2093-10-25 01:00:00} {detroit y2038} { - clock format 3907288800 -format {%H:%M:%S %z %Z} \ +test clock-5.766 {time zone boundary case 2093-11-01 01:00:00} {detroit y2038} { + clock format 3907893600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.767 {time zone boundary case 2093-10-25 01:00:01} {detroit y2038} { - clock format 3907288801 -format {%H:%M:%S %z %Z} \ +test clock-5.767 {time zone boundary case 2093-11-01 01:00:01} {detroit y2038} { + clock format 3907893601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.768 {time zone boundary case 2094-04-04 01:59:59} {detroit y2038} { - clock format 3921202799 -format {%H:%M:%S %z %Z} \ +test clock-5.768 {time zone boundary case 2094-03-14 01:59:59} {detroit y2038} { + clock format 3919388399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.769 {time zone boundary case 2094-04-04 03:00:00} {detroit y2038} { - clock format 3921202800 -format {%H:%M:%S %z %Z} \ +test clock-5.769 {time zone boundary case 2094-03-14 03:00:00} {detroit y2038} { + clock format 3919388400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.770 {time zone boundary case 2094-04-04 03:00:01} {detroit y2038} { - clock format 3921202801 -format {%H:%M:%S %z %Z} \ +test clock-5.770 {time zone boundary case 2094-03-14 03:00:01} {detroit y2038} { + clock format 3919388401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.771 {time zone boundary case 2094-10-31 01:59:59} {detroit y2038} { - clock format 3939343199 -format {%H:%M:%S %z %Z} \ +test clock-5.771 {time zone boundary case 2094-11-07 01:59:59} {detroit y2038} { + clock format 3939947999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.772 {time zone boundary case 2094-10-31 01:00:00} {detroit y2038} { - clock format 3939343200 -format {%H:%M:%S %z %Z} \ +test clock-5.772 {time zone boundary case 2094-11-07 01:00:00} {detroit y2038} { + clock format 3939948000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.773 {time zone boundary case 2094-10-31 01:00:01} {detroit y2038} { - clock format 3939343201 -format {%H:%M:%S %z %Z} \ +test clock-5.773 {time zone boundary case 2094-11-07 01:00:01} {detroit y2038} { + clock format 3939948001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.774 {time zone boundary case 2095-04-03 01:59:59} {detroit y2038} { - clock format 3952652399 -format {%H:%M:%S %z %Z} \ +test clock-5.774 {time zone boundary case 2095-03-13 01:59:59} {detroit y2038} { + clock format 3950837999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.775 {time zone boundary case 2095-04-03 03:00:00} {detroit y2038} { - clock format 3952652400 -format {%H:%M:%S %z %Z} \ +test clock-5.775 {time zone boundary case 2095-03-13 03:00:00} {detroit y2038} { + clock format 3950838000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.776 {time zone boundary case 2095-04-03 03:00:01} {detroit y2038} { - clock format 3952652401 -format {%H:%M:%S %z %Z} \ +test clock-5.776 {time zone boundary case 2095-03-13 03:00:01} {detroit y2038} { + clock format 3950838001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.777 {time zone boundary case 2095-10-30 01:59:59} {detroit y2038} { - clock format 3970792799 -format {%H:%M:%S %z %Z} \ +test clock-5.777 {time zone boundary case 2095-11-06 01:59:59} {detroit y2038} { + clock format 3971397599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.778 {time zone boundary case 2095-10-30 01:00:00} {detroit y2038} { - clock format 3970792800 -format {%H:%M:%S %z %Z} \ +test clock-5.778 {time zone boundary case 2095-11-06 01:00:00} {detroit y2038} { + clock format 3971397600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.779 {time zone boundary case 2095-10-30 01:00:01} {detroit y2038} { - clock format 3970792801 -format {%H:%M:%S %z %Z} \ +test clock-5.779 {time zone boundary case 2095-11-06 01:00:01} {detroit y2038} { + clock format 3971397601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.780 {time zone boundary case 2096-04-01 01:59:59} {detroit y2038} { - clock format 3984101999 -format {%H:%M:%S %z %Z} \ +test clock-5.780 {time zone boundary case 2096-03-11 01:59:59} {detroit y2038} { + clock format 3982287599 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.781 {time zone boundary case 2096-04-01 03:00:00} {detroit y2038} { - clock format 3984102000 -format {%H:%M:%S %z %Z} \ +test clock-5.781 {time zone boundary case 2096-03-11 03:00:00} {detroit y2038} { + clock format 3982287600 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.782 {time zone boundary case 2096-04-01 03:00:01} {detroit y2038} { - clock format 3984102001 -format {%H:%M:%S %z %Z} \ +test clock-5.782 {time zone boundary case 2096-03-11 03:00:01} {detroit y2038} { + clock format 3982287601 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.783 {time zone boundary case 2096-10-28 01:59:59} {detroit y2038} { - clock format 4002242399 -format {%H:%M:%S %z %Z} \ +test clock-5.783 {time zone boundary case 2096-11-04 01:59:59} {detroit y2038} { + clock format 4002847199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.784 {time zone boundary case 2096-10-28 01:00:00} {detroit y2038} { - clock format 4002242400 -format {%H:%M:%S %z %Z} \ +test clock-5.784 {time zone boundary case 2096-11-04 01:00:00} {detroit y2038} { + clock format 4002847200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.785 {time zone boundary case 2096-10-28 01:00:01} {detroit y2038} { - clock format 4002242401 -format {%H:%M:%S %z %Z} \ +test clock-5.785 {time zone boundary case 2096-11-04 01:00:01} {detroit y2038} { + clock format 4002847201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.786 {time zone boundary case 2097-04-07 01:59:59} {detroit y2038} { - clock format 4016156399 -format {%H:%M:%S %z %Z} \ +test clock-5.786 {time zone boundary case 2097-03-10 01:59:59} {detroit y2038} { + clock format 4013737199 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.787 {time zone boundary case 2097-04-07 03:00:00} {detroit y2038} { - clock format 4016156400 -format {%H:%M:%S %z %Z} \ +test clock-5.787 {time zone boundary case 2097-03-10 03:00:00} {detroit y2038} { + clock format 4013737200 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.788 {time zone boundary case 2097-04-07 03:00:01} {detroit y2038} { - clock format 4016156401 -format {%H:%M:%S %z %Z} \ +test clock-5.788 {time zone boundary case 2097-03-10 03:00:01} {detroit y2038} { + clock format 4013737201 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.789 {time zone boundary case 2097-10-27 01:59:59} {detroit y2038} { - clock format 4033691999 -format {%H:%M:%S %z %Z} \ +test clock-5.789 {time zone boundary case 2097-11-03 01:59:59} {detroit y2038} { + clock format 4034296799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.790 {time zone boundary case 2097-10-27 01:00:00} {detroit y2038} { - clock format 4033692000 -format {%H:%M:%S %z %Z} \ +test clock-5.790 {time zone boundary case 2097-11-03 01:00:00} {detroit y2038} { + clock format 4034296800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.791 {time zone boundary case 2097-10-27 01:00:01} {detroit y2038} { - clock format 4033692001 -format {%H:%M:%S %z %Z} \ +test clock-5.791 {time zone boundary case 2097-11-03 01:00:01} {detroit y2038} { + clock format 4034296801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.792 {time zone boundary case 2098-04-06 01:59:59} {detroit y2038} { - clock format 4047605999 -format {%H:%M:%S %z %Z} \ +test clock-5.792 {time zone boundary case 2098-03-09 01:59:59} {detroit y2038} { + clock format 4045186799 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.793 {time zone boundary case 2098-04-06 03:00:00} {detroit y2038} { - clock format 4047606000 -format {%H:%M:%S %z %Z} \ +test clock-5.793 {time zone boundary case 2098-03-09 03:00:00} {detroit y2038} { + clock format 4045186800 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.794 {time zone boundary case 2098-04-06 03:00:01} {detroit y2038} { - clock format 4047606001 -format {%H:%M:%S %z %Z} \ +test clock-5.794 {time zone boundary case 2098-03-09 03:00:01} {detroit y2038} { + clock format 4045186801 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.795 {time zone boundary case 2098-10-26 01:59:59} {detroit y2038} { - clock format 4065141599 -format {%H:%M:%S %z %Z} \ +test clock-5.795 {time zone boundary case 2098-11-02 01:59:59} {detroit y2038} { + clock format 4065746399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.796 {time zone boundary case 2098-10-26 01:00:00} {detroit y2038} { - clock format 4065141600 -format {%H:%M:%S %z %Z} \ +test clock-5.796 {time zone boundary case 2098-11-02 01:00:00} {detroit y2038} { + clock format 4065746400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.797 {time zone boundary case 2098-10-26 01:00:01} {detroit y2038} { - clock format 4065141601 -format {%H:%M:%S %z %Z} \ +test clock-5.797 {time zone boundary case 2098-11-02 01:00:01} {detroit y2038} { + clock format 4065746401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} -test clock-5.798 {time zone boundary case 2099-04-05 01:59:59} {detroit y2038} { - clock format 4079055599 -format {%H:%M:%S %z %Z} \ +test clock-5.798 {time zone boundary case 2099-03-08 01:59:59} {detroit y2038} { + clock format 4076636399 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0500 EST} -test clock-5.799 {time zone boundary case 2099-04-05 03:00:00} {detroit y2038} { - clock format 4079055600 -format {%H:%M:%S %z %Z} \ +test clock-5.799 {time zone boundary case 2099-03-08 03:00:00} {detroit y2038} { + clock format 4076636400 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:00 -0400 EDT} -test clock-5.800 {time zone boundary case 2099-04-05 03:00:01} {detroit y2038} { - clock format 4079055601 -format {%H:%M:%S %z %Z} \ +test clock-5.800 {time zone boundary case 2099-03-08 03:00:01} {detroit y2038} { + clock format 4076636401 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {03:00:01 -0400 EDT} -test clock-5.801 {time zone boundary case 2099-10-25 01:59:59} {detroit y2038} { - clock format 4096591199 -format {%H:%M:%S %z %Z} \ +test clock-5.801 {time zone boundary case 2099-11-01 01:59:59} {detroit y2038} { + clock format 4097195999 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:59:59 -0400 EDT} -test clock-5.802 {time zone boundary case 2099-10-25 01:00:00} {detroit y2038} { - clock format 4096591200 -format {%H:%M:%S %z %Z} \ +test clock-5.802 {time zone boundary case 2099-11-01 01:00:00} {detroit y2038} { + clock format 4097196000 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:00 -0500 EST} -test clock-5.803 {time zone boundary case 2099-10-25 01:00:01} {detroit y2038} { - clock format 4096591201 -format {%H:%M:%S %z %Z} \ +test clock-5.803 {time zone boundary case 2099-11-01 01:00:01} {detroit y2038} { + clock format 4097196001 -format {%H:%M:%S %z %Z} \ -timezone :America/Detroit } {01:00:01 -0500 EST} # END testcases5 @@ -34536,56 +35056,78 @@ test clock-30.9 {clock add days} { } {{2000-01-02 12:34:56} {1999-12-31 12:34:56}} test clock-30.10 {clock add days, spring DST conversion, before} { set t [clock scan {2004-04-03 01:59:59} -format {%Y-%m-%d %H:%M:%S} \ - -timezone EST5EDT] - set f1 [clock add $t 1 day -timezone EST5EDT] - set f2 [clock add $t 2 days -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] - set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f2 [clock add $t 2 days \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] list $x1 $x2 } {{2004-04-04 01:59:59 -0500} {2004-04-05 01:59:59 -0400}} test clock-30.11 {clock add days, spring DST conversion, bad case} { set t [clock scan {2004-04-03 02:30:00} -format {%Y-%m-%d %H:%M:%S} \ - -timezone EST5EDT] - set f1 [clock add $t 1 day -timezone EST5EDT] - set f2 [clock add $t 2 day -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] - set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f2 [clock add $t 2 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] list $x1 $x2 } {{2004-04-04 03:30:00 -0400} {2004-04-05 02:30:00 -0400}} test clock-30.12 {clock add days, spring DST conversion, after} { set t [clock scan {2004-04-03 03:00:00} -format {%Y-%m-%d %H:%M:%S} \ - -timezone EST5EDT] - set f1 [clock add $t 1 day -timezone EST5EDT] - set f2 [clock add $t 2 day -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] - set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 day -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f2 [clock add $t 2 day -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] list $x1 $x2 } {{2004-04-04 03:00:00 -0400} {2004-04-05 03:00:00 -0400}} test clock-30.13 {clock add days, fall DST conversion, before} { set t [clock scan {2004-10-30 00:59:59} -format {%Y-%m-%d %H:%M:%S} \ - -timezone EST5EDT] - set f1 [clock add $t 1 day -timezone EST5EDT] - set f2 [clock add $t 2 day -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] - set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f2 [clock add $t 2 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] list $x1 $x2 } {{2004-10-31 00:59:59 -0400} {2004-11-01 00:59:59 -0500}} test clock-30.14 {clock add days, fall DST conversion, bad case} { set t [clock scan {2004-10-30 01:30:00} -format {%Y-%m-%d %H:%M:%S} \ - -timezone EST5EDT] - set f1 [clock add $t 1 day -timezone EST5EDT] - set f2 [clock add $t 2 day -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] - set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f2 [clock add $t 2 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] list $x1 $x2 } {{2004-10-31 01:30:00 -0400} {2004-11-01 01:30:00 -0500}} test clock-30.15 {clock add days, fall DST conversion, after} { set t [clock scan {2004-10-30 02:30:00} -format {%Y-%m-%d %H:%M:%S} \ - -timezone EST5EDT] - set f1 [clock add $t 1 day -timezone EST5EDT] - set f2 [clock add $t 2 day -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] - set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f2 [clock add $t 2 day \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x2 [clock format $f2 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] list $x1 $x2 } {{2004-10-31 02:30:00 -0500} {2004-11-01 02:30:00 -0500}} test clock-30.16 {clock add weeks} { @@ -34609,16 +35151,19 @@ test clock-30.17 {clock add hours} { test clock-30.18 {clock add hours at DST conversion} { set t [clock scan {2004-04-04 01:00:00 -0500} \ -format {%Y-%m-%d %H:%M:%S %z} \ - -timezone EST5EDT] - set f1 [clock add $t 1 hour -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 hour -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] } {2004-04-04 03:00:00 -0400} test clock-30.19 {clock add hours at DST conversion} { set t [clock scan {2004-10-31 01:00:00 -0400} \ -format {%Y-%m-%d %H:%M:%S %z} \ - -timezone EST5EDT] - set f1 [clock add $t 1 hour -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 1 hour \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] } {2004-10-31 01:00:00 -0500} test clock-30.20 {clock add minutes} { set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \ @@ -34632,16 +35177,20 @@ test clock-30.20 {clock add minutes} { test clock-30.21 {clock add minutes at DST conversion} { set t [clock scan {2004-04-04 01:00:00 -0500} \ -format {%Y-%m-%d %H:%M:%S %z} \ - -timezone EST5EDT] - set f1 [clock add $t 60 minutes -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 60 minutes \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] } {2004-04-04 03:00:00 -0400} test clock-30.22 {clock add minutes at DST conversion} { set t [clock scan {2004-10-31 01:00:00 -0400} \ -format {%Y-%m-%d %H:%M:%S %z} \ - -timezone EST5EDT] - set f1 [clock add $t 60 minutes -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 60 minutes \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] } {2004-10-31 01:00:00 -0500} test clock-30.23 {clock add seconds} { set t [clock scan {2000-01-01 12:34:56} -format {%Y-%m-%d %H:%M:%S} \ @@ -34655,16 +35204,19 @@ test clock-30.23 {clock add seconds} { test clock-30.24 {clock add seconds at DST conversion} { set t [clock scan {2004-04-04 01:00:00 -0500} \ -format {%Y-%m-%d %H:%M:%S %z} \ - -timezone EST5EDT] - set f1 [clock add $t 3600 seconds -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 3600 seconds \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] } {2004-04-04 03:00:00 -0400} test clock-30.25 {clock add seconds at DST conversion} { set t [clock scan {2004-10-31 01:00:00 -0400} \ -format {%Y-%m-%d %H:%M:%S %z} \ - -timezone EST5EDT] - set f1 [clock add $t 3600 seconds -timezone EST5EDT] - set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} -timezone EST5EDT] + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set f1 [clock add $t 3600 seconds -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] + set x1 [clock format $f1 -format {%Y-%m-%d %H:%M:%S %z} \ + -timezone EST05:00EDT04:00,M4.1.0/02:00,M10.5.0/02:00] } {2004-10-31 01:00:00 -0500} test clock-31.1 {system locale} \ @@ -34673,6 +35225,8 @@ test clock-31.1 {system locale} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} ::tcl::clock::ClearCaches } \ -body { @@ -34682,6 +35236,7 @@ test clock-31.1 {system locale} \ namespace eval ::tcl::clock { rename registry {} } + if {$noreg} {set ::tcl::clock::NoRegistry {}} ::tcl::clock::ClearCaches } \ -result [clock format 0 -timezone :UTC -locale current \ @@ -34693,6 +35248,8 @@ test clock-31.2 {system locale} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} ::tcl::clock::ClearCaches } \ -body { @@ -34702,6 +35259,7 @@ test clock-31.2 {system locale} \ namespace eval ::tcl::clock { rename registry {} } + if {$noreg} {set ::tcl::clock::NoRegistry {}} ::tcl::clock::ClearCaches } \ -result [clock format 0 -timezone :UTC -locale current \ @@ -34713,6 +35271,8 @@ test clock-31.3 {system locale} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} ::tcl::clock::ClearCaches } \ -body { @@ -34722,6 +35282,7 @@ test clock-31.3 {system locale} \ namespace eval ::tcl::clock { rename registry {} } + if {$noreg} {set ::tcl::clock::NoRegistry {}} ::tcl::clock::ClearCaches } \ -result [clock format 0 -timezone :UTC -locale current \ @@ -34733,6 +35294,8 @@ test clock-31.4 {system locale} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} if { [info exists env(TZ)] } { set oldTZ $env(TZ) unset env(TZ) @@ -34756,6 +35319,7 @@ test clock-31.4 {system locale} \ if { [info exists oldTZ] } { set env(TZ) $oldTZ } + if {$noreg} {set ::tcl::clock::NoRegistry {}} ::tcl::clock::ClearCaches } \ -result [clock format 0 -locale current -timezone EST5 \ @@ -34767,6 +35331,8 @@ test clock-31.5 {system locale} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} if { [info exists env(TZ)] } { set oldTZ $env(TZ) unset env(TZ) @@ -34784,6 +35350,7 @@ test clock-31.5 {system locale} \ namespace eval ::tcl::clock { rename registry {} } + if {$noreg} {set ::tcl::clock::NoRegistry {}} if { [info exists oldTclTZ] } { set env(TCL_TZ) $oldTclTZ } @@ -34801,6 +35368,8 @@ test clock-31.6 {system locale} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} if { [info exists env(TZ)] } { set oldTZ $env(TZ) unset env(TZ) @@ -34818,6 +35387,7 @@ test clock-31.6 {system locale} \ namespace eval ::tcl::clock { rename registry {} } + if {$noreg} {set ::tcl::clock::NoRegistry {}} if { [info exists oldTclTZ] } { set env(TCL_TZ) $oldTclTZ } @@ -34880,7 +35450,7 @@ test clock-33.2 {clock clicks tests} { } {1} test clock-33.3 {clock clicks tests} { list [catch {clock clicks foo} msg] $msg -} {1 {bad option "foo": must be -milliseconds or -microseconds}} +} {1 {bad switch "foo": must be -milliseconds or -microseconds}} test clock-33.4 {clock clicks tests} { expr [clock clicks -milliseconds]+1 concat {} @@ -34890,6 +35460,8 @@ test clock-33.4a {clock milliseconds} { concat {} } {} test clock-33.5 {clock clicks tests, millisecond timing test} { + # This test can fail on a system that is so heavily loaded that + # the test takes >60 ms to run. set start [clock clicks -milli] after 10 set end [clock clicks -milli] @@ -34900,6 +35472,8 @@ test clock-33.5 {clock clicks tests, millisecond timing test} { "test should have taken 0-60 ms, actually took [expr $end - $start]"} } {ok} test clock-33.5a {clock tests, millisecond timing test} { + # This test can fail on a system that is so heavily loaded that + # the test takes >60 ms to run. set start [clock milliseconds] after 10 set end [clock milliseconds] @@ -34910,19 +35484,23 @@ test clock-33.5a {clock tests, millisecond timing test} { "test should have taken 0-60 ms, actually took [expr $end - $start]"} } {ok} test clock-33.6 {clock clicks, milli with too much abbreviation} { - list [catch { clock clicks {} } msg] $msg -} {1 {bad option "": must be -milliseconds or -microseconds}} + list [catch { clock clicks ? } msg] $msg +} {1 {bad switch "?": must be -milliseconds or -microseconds}} test clock-33.7 {clock clicks, milli with too much abbreviation} { list [catch { clock clicks - } msg] $msg -} {1 {ambiguous option "-": must be -milliseconds or -microseconds}} +} {1 {ambiguous switch "-": must be -milliseconds or -microseconds}} test clock-33.8 {clock clicks test, microsecond timing test} { + # This test can fail on a system that is so heavily loaded that + # the test takes >60 ms to run. set start [clock clicks -micro] after 10 set end [clock clicks -micro] expr {($end > $start) && (($end - $start) <= 60000)} } {1} test clock-33.8a {clock test, microsecond timing test} { + # This test can fail on a system that is so heavily loaded that + # the test takes >60 ms to run. set start [clock microseconds] after 10 set end [clock microseconds] @@ -34995,10 +35573,13 @@ test clock-33.11a {clock test, millis align with micros} { # clock scan test clock-34.1 {clock scan tests} { list [catch {clock scan} msg] $msg -} {1 {wrong # args: should be "::tcl::clock::scan string ?-base seconds? ?-format string? ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?"}} -test clock-34.2 {clock scan tests} { - list [catch {clock scan "bad-string"} msg] $msg -} {1 {unable to convert date-time string "bad-string"}} +} {1 {wrong # args: should be "clock scan string ?-base seconds? ?-format string? ?-gmt boolean? ?-locale LOCALE? ?-timezone ZONE?"}} +test clock-34.2 {clock scan tests} {*}{ + -body {clock scan "bad-string"} + -returnCodes error + -match glob + -result {unable to convert date-time string "bad-string"*} +} test clock-34.3 {clock scan tests} { clock format [clock scan "14 Feb 92" -gmt true] \ -format {%m/%d/%y %I:%M:%S %p} -gmt true @@ -35222,6 +35803,38 @@ test clock-34.47 {ago with multiple relative units} { expr {$base - $res} } 180000 +test clock-34.48 {more than one ToD} {*}{ + -body {clock scan {10:00 11:00}} + -returnCodes error + -result {unable to convert date-time string "10:00 11:00": more than one time of day in string} +} + +test clock-34.49 {more than one date} {*}{ + -body {clock scan {1/1/2001 2/2/2002}} + -returnCodes error + -result {unable to convert date-time string "1/1/2001 2/2/2002": more than one date in string} +} + +test clock-34.50 {more than one time zone} {*}{ + -body {clock scan {10:00 EST CST}} + -returnCodes error + -result {unable to convert date-time string "10:00 EST CST": more than one time zone in string} +} + +test clock-34.51 {more than one weekday} {*}{ + -body {clock scan {Monday Tuesday}} + -returnCodes error + -result {unable to convert date-time string "Monday Tuesday": more than one weekday in string} +} + +test clock-34.52 {more than one ordinal month} {*}{ + -body {clock scan {next January next March}} + -returnCodes error + -result {unable to convert date-time string "next January next March": more than one ordinal month in string} +} + + + # clock seconds test clock-35.1 {clock seconds tests} { expr [clock seconds]+1 @@ -35280,6 +35893,39 @@ test clock-38.1 {regression - convertUTCToLocalViaC - east of Greenwich} \ } \ -result {01:00:00} +test clock-38.2 {make sure TZ is not cached after unset} \ + -setup { + if { [info exists env(TZ)] } { + set oldTZ $env(TZ) + unset env(TZ) + } + if { [info exists env(TCL_TZ)] } { + set oldTCLTZ $env(TCL_TZ) + unset env(TCL_TZ) + } + } \ + -body { + set t1 [clock format 0] + # a time zone that is unlikely to anywhere + set env(TZ) "+04:20" + set t2 [clock format 0] + unset env(TZ) + set t3 [clock format 0] + expr {$t1 eq $t3 && $t1 ne $t2} + } \ + -cleanup { + if { [info exists oldTZ] } { + set env(TZ) $oldTZ + unset oldTZ + } + if { [info exists oldTclTZ] } { + set env(TCL_TZ) $oldTclTZ + unset oldTclTZ + } + } \ + -result 1 + + test clock-39.1 {regression - synonym timezones} { clock format 0 -format {%H:%M:%S} -timezone :US/Eastern } {19:00:00} @@ -35292,7 +35938,7 @@ test clock-40.1 {regression - bad month with -timezone :localtime} \ set env(TZ) UTC0 } \ -body { - clock scan 1970-01-01T00:00:00 -timezone :localtime \ + clock scan 2000-01-01T00:00:00 -timezone :localtime \ -format %Y-%m-%dT%H:%M:%S } \ -cleanup { @@ -35303,7 +35949,7 @@ test clock-40.1 {regression - bad month with -timezone :localtime} \ unset env(TZ) } } \ - -result {0} + -result 946684800 test clock-41.1 {regression test - format group %k when hour is 0 } { clock format 0 -format %k -gmt true @@ -35329,26 +35975,8 @@ test clock-42.1 {regression test - %z in :localtime when west of Greenwich } \ } \ -result {-0500} -test clock-43.1 {regression test - mktime returning -1} \ - -setup { - if { [info exists env(TZ)] } { - set oldTZ $env(TZ) - } - set env(TZ) UTC0 - } \ - -body { - clock scan 1969-12-31T23:59:59 -format %Y-%m-%dT%T -timezone :localtime - } \ - -cleanup { - if { [info exists oldTZ] } { - set env(TZ) $oldTZ - unset oldTZ - } else { - unset env(TZ) - } - } \ - -result {-1} - +# 43.1 was a bad test - mktime returning -1 is an error according to posix. + test clock-44.1 {regression test - time zone name containing hyphen } \ -setup { if { [info exists env(TZ)] } { @@ -35427,6 +36055,8 @@ test clock-49.2 {regression test - missing time zone file (Bug 1237907)} \ namespace eval ::tcl::clock { namespace import -force ::testClock::registry } + set noreg [info exists ::tcl::clock::NoRegistry] + if {$noreg} {unset ::tcl::clock::NoRegistry} if { [info exists env(TZ)] } { set oldTZ $env(TZ) unset env(TZ) @@ -35437,13 +36067,13 @@ test clock-49.2 {regression test - missing time zone file (Bug 1237907)} \ } # make it so New York time is a missing file dict set ::tcl::clock::WinZoneInfo \ - {-18000 0 3600 0 10 0 5 2 0 0 0 0 4 0 1 2 0 0 0} \ + {-18000 0 3600 0 11 0 1 2 0 0 0 0 3 0 2 2 0 0 0} \ :No/Such/File ::tcl::clock::ClearCaches } \ -body { list [::tcl::clock::GuessWindowsTimeZone] \ - [clock format 0 -locale system -format "%X %Z"] \ + [clock format 0 -locale system -format "%H:%M:%S %Z"] \ [clock format -86400 -format "%Y"] } \ -cleanup { @@ -35451,6 +36081,7 @@ test clock-49.2 {regression test - missing time zone file (Bug 1237907)} \ namespace eval ::tcl::clock { rename registry {} } + if {$noreg} {set ::tcl::clock::NoRegistry {}} if { [info exists oldTclTZ] } { set env(TCL_TZ) $oldTclTZ } @@ -35459,11 +36090,851 @@ test clock-49.2 {regression test - missing time zone file (Bug 1237907)} \ } # put New York back on the map dict set ::tcl::clock::WinZoneInfo \ - {-18000 0 3600 0 10 0 5 2 0 0 0 0 4 0 1 2 0 0 0} \ + {-18000 0 3600 0 11 0 1 2 0 0 0 0 3 0 2 2 0 0 0} \ :America/New_York ::tcl::clock::ClearCaches } \ - -result {<-0500>+05:00:00<-0400>+04:00:00,M4.1.0/02:00:00,M10.5.0/02:00:00 { 7:00:00 PM -0500} 1969} + -result {<-0500>+05:00:00<-0400>+04:00:00,M3.2.0/02:00:00,M11.1.0/02:00:00 {19:00:00 -0500} 1969} + +test clock-50.1 {format / scan -1 as a local time} { + if {[catch { + clock scan \ + [clock format -1 -format %Y%m%d%H%M%S -timezone :localtime] \ + -format %Y%m%d%H%M%S -timezone :localtime + } result]} { + if { [regexp " too large" $result] } { + set result -1 + } + } + set result +} -1 +test clock-50.2 {format / scan -2 as a local time} { + if {[catch { + clock scan \ + [clock format -2 -format %Y%m%d%H%M%S -timezone :localtime] \ + -format %Y%m%d%H%M%S -timezone :localtime + } result]} { + if { [regexp " too large" $result] } { + set result -2 + } + } + set result +} -2 + +test clock-51.1 {correct conversion of times in Sydney} { + # Paul Mackerras reported a bug where DST rollover in New South Wales + # was miscalculated. The problem was that tclZIC.tcl had a + # typo in the switch case where DST begins/ends at a given time + # Standard Time (that is, winter time). + set result {} + foreach t {1130601599 1130601600 1130637599 1130637600} { + lappend result [clock format $t -format %H:%M:%S \ + -timezone :Australia/Sydney] + } + set result +} {01:59:59 03:00:00 12:59:59 13:00:00} + +test clock-52.1 {Posix timezone and conversion on last Sunday} { + # Martin Lemburg reported a bug where if tzdata is missing, then + # times are converted incorrectly in locales where DST conversion + # happens in the last (nominal 5th) week of a month. + set result {} + set timezone <MEZ>-01:00:00<MESZ>-02:00:00,M3.5.0/02:00:00,M10.5.0/01:00:00 + foreach t {1143334799 1143334800} { + lappend result [clock format $t -format %H:%M:%S -timezone $timezone] \ + [clock format $t -format %H:%M:%S -timezone :Europe/Berlin] + } + set result +} {01:59:59 01:59:59 03:00:00 03:00:00} + +test clock-52.2 {correct conversion of times in Europe} { + # [Bug 2207436] + set result {} + foreach t [list 1206838799 1206838800 1224982799 1224982800] { + lappend result [clock format $t -format %H:%M:%S \ + -timezone MET-1METDST] + lappend result [clock format $t -format %H:%M:%S \ + -timezone MET0METDST] + } + set result +} {01:59:59 00:59:59 03:00:00 02:00:00 02:59:59 01:59:59 02:00:00 01:00:00} + +test clock-52.3 {correct conversion of times in Russia} { + # [Bug 2207436] + set result {} + foreach t [list 1206799199 1206799200 1224943199 1224943200] { + lappend result [clock format $t -format %H:%M:%S \ + -timezone WST-12WSTDST] + } + set result +} {01:59:59 03:00:00 02:59:59 02:00:00} + +test clock-52.4 {correct conversion of times in USA} { + # [Bug 2207436] + set result {} + foreach t [list 1268549999 1268550000 1257055199 1257055200] { + lappend result [clock format $t -format %H:%M:%S \ + -timezone EST5EDT] + } + set result +} {01:59:59 03:00:00 01:59:59 01:00:00} + +# Regression test for Bug # 1505383 + +test clock-53.1 {%EC %Ey} { + clock format 0 -gmt true -locale en_US_roman -format %EC%Ey +} mcmlxx + +# Test that glob-special characters can be handled in [clock] + +test clock-54.1 {glob specials in [clock format]} \ + -setup { + clock format 0 -gmt 1 -format %Y + } \ + -body { + clock format 0 -gmt 1 -format {*[%Y%m%d]*} + } \ + -result {*[19700101]*} +test clock-54.2 {glob specials in [clock scan]} \ + -setup { + clock scan 1970 -gmt 1 -format %Y + } \ + -body { + clock scan {*[19700101]*} -format {*[%Y%m%d]*} -gmt 1 + } \ + -result 0 + +test clock-55.1 {Common Era} { + clock format -62135769600 -gmt 1 -format {%d %m %Y %EE} +} {01 01 0001 C.E.} +test clock-55.2 {Common Era} { + clock format -62135769600 -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} {01 01 0001 Anno Domini} +test clock-55.3 {Before the Common Era} { + clock format -62135769601 -gmt 1 -format {%d %m %Y %EE} +} {31 12 0001 B.C.E.} +test clock-55.4 {Before the Common Era} { + clock format -62135769601 -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} {31 12 0001 Before Christ} +test clock-55.5 {Common Era} { + clock scan {01 01 0001 C.E.} \ + -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} -62135769600 +test clock-55.6 {Common Era} { + clock scan {01 01 0001 A.D.} \ + -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} -62135769600 +test clock-55.7 {Common Era} { + clock scan {01 01 0001 Anno Domini} \ + -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} -62135769600 +test clock-55.8 {Before the Common Era} { + clock scan {31 12 0001 B.C.E.} \ + -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} -62135856000 +test clock-55.9 {Common Era} { + clock scan {31 12 0001 B.C.} \ + -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} -62135856000 +test clock-55.10 {Common Era} { + clock scan {31 12 0001 Before Christ} \ + -gmt 1 -format {%d %m %Y %EE} -locale en_US_roman +} -62135856000 + +test clock-56.1 {use of zoneinfo, version 1} {*}{ + -setup { + clock format [clock seconds] + set tzdir [makeDirectory zoneinfo] + set tzdir2 [makeDirectory Test $tzdir] + set tzfile [makeFile {} PhoenixOne $tzdir2] + set f [open $tzfile wb] + puts -nonewline $f [binary format c* { + 0x54 0x5a 0x69 0x66 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 + 0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a + 0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x0c 0x9e 0xa6 0x3a 0x90 + 0x9f 0xbb 0x07 0x80 0xa0 0x86 0x1c 0x90 0xa1 0x9a 0xe9 0x80 + 0xcb 0x89 0x0c 0x90 0xcf 0x17 0xdf 0x1c 0xcf 0x8f 0xe5 0xac + 0xd0 0x81 0x1a 0x1c 0xfa 0xf8 0x75 0x10 0xfb 0xe8 0x58 0x00 + 0x00 0x01 0x00 0x01 0x02 0x01 0x02 0x01 0x00 0x01 0xff 0xff + 0xab 0xa0 0x01 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff + 0xab 0xa0 0x01 0x08 0x4d 0x44 0x54 0x00 0x4d 0x53 0x54 0x00 + 0x4d 0x57 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + }] + close $f + set ::tcl::clock::ZoneinfoPaths \ + [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir] + ::tcl::clock::ClearCaches + } + -cleanup { + set ::tcl::clock::ZoneinfoPaths \ + [lrange $::tcl::clock::ZoneinfoPaths 1 end] + ::tcl::clock::ClearCaches + removeFile PhoenixOne $tzdir2 + removeDirectory Test $tzdir + removeDirectory zoneinfo + } + -body { + clock format 1072940400 -timezone :Test/PhoenixOne \ + -format {%Y-%m-%d %H:%M:%S %Z} + } + -result {2004-01-01 00:00:00 MST} +} + +test clock-56.2 {use of zoneinfo, version 2} {*}{ + -setup { + clock format [clock seconds] + set tzdir [makeDirectory zoneinfo] + set tzdir2 [makeDirectory Test $tzdir] + set tzfile [makeFile {} PhoenixTwo $tzdir2] + set f [open $tzfile wb] + puts -nonewline $f [binary format c* { + 0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x03 + 0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a + 0x00 0x00 0x00 0x03 0x00 0x00 0x00 0x0c 0x9e 0xa6 0x3a 0x90 + 0x9f 0xbb 0x07 0x80 0xa0 0x86 0x1c 0x90 0xa1 0x9a 0xe9 0x80 + 0xcb 0x89 0x0c 0x90 0xcf 0x17 0xdf 0x1c 0xcf 0x8f 0xe5 0xac + 0xd0 0x81 0x1a 0x1c 0xfa 0xf8 0x75 0x10 0xfb 0xe8 0x58 0x00 + 0x00 0x01 0x00 0x01 0x02 0x01 0x02 0x01 0x00 0x01 0xff 0xff + 0xab 0xa0 0x01 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff + 0xab 0xa0 0x01 0x08 0x4d 0x44 0x54 0x00 0x4d 0x53 0x54 0x00 + 0x4d 0x57 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x54 0x5a + 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x04 0x00 0x00 + 0x00 0x04 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0b 0x00 0x00 + 0x00 0x04 0x00 0x00 0x00 0x10 0xff 0xff 0xff 0xff 0x5e 0x04 + 0x0c 0xb0 0xff 0xff 0xff 0xff 0x9e 0xa6 0x3a 0x90 0xff 0xff + 0xff 0xff 0x9f 0xbb 0x07 0x80 0xff 0xff 0xff 0xff 0xa0 0x86 + 0x1c 0x90 0xff 0xff 0xff 0xff 0xa1 0x9a 0xe9 0x80 0xff 0xff + 0xff 0xff 0xcb 0x89 0x0c 0x90 0xff 0xff 0xff 0xff 0xcf 0x17 + 0xdf 0x1c 0xff 0xff 0xff 0xff 0xcf 0x8f 0xe5 0xac 0xff 0xff + 0xff 0xff 0xd0 0x81 0x1a 0x1c 0xff 0xff 0xff 0xff 0xfa 0xf8 + 0x75 0x10 0xff 0xff 0xff 0xff 0xfb 0xe8 0x58 0x00 0x02 0x01 + 0x02 0x01 0x02 0x03 0x02 0x03 0x02 0x01 0x02 0xff 0xff 0x96 + 0xee 0x00 0x00 0xff 0xff 0xab 0xa0 0x01 0x04 0xff 0xff 0x9d + 0x90 0x00 0x08 0xff 0xff 0xab 0xa0 0x01 0x0c 0x4c 0x4d 0x54 + 0x00 0x4d 0x44 0x54 0x00 0x4d 0x53 0x54 0x00 0x4d 0x57 0x54 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a 0x4d 0x53 + 0x54 0x37 0x0a + }] + close $f + set ::tcl::clock::ZoneinfoPaths \ + [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir] + ::tcl::clock::ClearCaches + } + -cleanup { + set ::tcl::clock::ZoneinfoPaths \ + [lrange $::tcl::clock::ZoneinfoPaths 1 end] + ::tcl::clock::ClearCaches + removeFile PhoenixTwo $tzdir2 + removeDirectory Test $tzdir + removeDirectory zoneinfo + } + -body { + clock format 1072940400 -timezone :Test/PhoenixTwo \ + -format {%Y-%m-%d %H:%M:%S %Z} + } + -result {2004-01-01 00:00:00 MST} +} + +test clock-56.3 {use of zoneinfo, version 2, Y2038 compliance} {*}{ + -setup { + clock format [clock seconds] + set tzdir [makeDirectory zoneinfo] + set tzdir2 [makeDirectory Test $tzdir] + set tzfile [makeFile {} TijuanaTwo $tzdir2] + set f [open $tzfile wb] + puts -nonewline $f [binary format c* { + 0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x06 0x00 0x00 + 0x00 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x95 0x00 0x00 0x00 + 0x06 0x00 0x00 0x00 0x18 0xa5 0xb6 0xf6 0x80 0xa9 0x79 0x4f 0x70 + 0xaf 0xf2 0x7c 0xf0 0xb6 0x66 0x64 0x70 0xb7 0x1b 0x10 0x00 0xb8 + 0x0a 0xf2 0xf0 0xcb 0xea 0x8d 0x80 0xd2 0x23 0xf4 0x70 0xd2 0x99 + 0xba 0x70 0xd7 0x1b 0x59 0x00 0xd8 0x91 0xb4 0xf0 0xe2 0x7e 0x59 + 0xa0 0xe3 0x49 0x52 0x90 0xe4 0x5e 0x3b 0xa0 0xe5 0x29 0x34 0x90 + 0xe6 0x47 0x58 0x20 0xe7 0x12 0x51 0x10 0xe8 0x27 0x3a 0x20 0xe8 + 0xf2 0x33 0x10 0xea 0x07 0x1c 0x20 0xea 0xd2 0x15 0x10 0xeb 0xe6 + 0xfe 0x20 0xec 0xb1 0xf7 0x10 0xed 0xc6 0xe0 0x20 0xee 0x91 0xd9 + 0x10 0x0b 0xe0 0xaf 0xa0 0x0c 0xd9 0xcd 0x10 0x0d 0xc0 0x91 0xa0 + 0x0e 0xb9 0xaf 0x10 0x0f 0xa9 0xae 0x20 0x10 0x99 0x91 0x10 0x11 + 0x89 0x90 0x20 0x12 0x79 0x73 0x10 0x13 0x69 0x72 0x20 0x14 0x59 + 0x55 0x10 0x15 0x49 0x54 0x20 0x16 0x39 0x37 0x10 0x17 0x29 0x36 + 0x20 0x18 0x22 0x53 0x90 0x19 0x09 0x18 0x20 0x1a 0x02 0x35 0x90 + 0x1a 0xf2 0x34 0xa0 0x1b 0xe2 0x17 0x90 0x1c 0xd2 0x16 0xa0 0x1d + 0xc1 0xf9 0x90 0x1e 0xb1 0xf8 0xa0 0x1f 0xa1 0xdb 0x90 0x20 0x76 + 0x2b 0x20 0x21 0x81 0xbd 0x90 0x22 0x56 0x0d 0x20 0x23 0x6a 0xda + 0x10 0x24 0x35 0xef 0x20 0x25 0x4a 0xbc 0x10 0x26 0x15 0xd1 0x20 + 0x27 0x2a 0x9e 0x10 0x27 0xfe 0xed 0xa0 0x29 0x0a 0x80 0x10 0x29 + 0xde 0xcf 0xa0 0x2a 0xea 0x62 0x10 0x2b 0xbe 0xb1 0xa0 0x2c 0xd3 + 0x7e 0x90 0x2d 0x9e 0x93 0xa0 0x2e 0xb3 0x60 0x90 0x2f 0x7e 0x75 + 0xa0 0x30 0x93 0x42 0x90 0x31 0x67 0x92 0x20 0x32 0x73 0x24 0x90 + 0x33 0x47 0x74 0x20 0x34 0x53 0x06 0x90 0x35 0x27 0x56 0x20 0x36 + 0x32 0xe8 0x90 0x37 0x07 0x38 0x20 0x38 0x1c 0x05 0x10 0x38 0xe7 + 0x1a 0x20 0x39 0xfb 0xe7 0x10 0x3a 0xc6 0xfc 0x20 0x3b 0xdb 0xc9 + 0x10 0x3c 0xb0 0x18 0xa0 0x3d 0xbb 0xab 0x10 0x3e 0x8f 0xfa 0xa0 + 0x3f 0x9b 0x8d 0x10 0x40 0x6f 0xdc 0xa0 0x41 0x84 0xa9 0x90 0x42 + 0x4f 0xbe 0xa0 0x43 0x64 0x8b 0x90 0x44 0x2f 0xa0 0xa0 0x45 0x44 + 0x6d 0x90 0x46 0x0f 0x82 0xa0 0x47 0x24 0x4f 0x90 0x47 0xf8 0x9f + 0x20 0x49 0x04 0x31 0x90 0x49 0xd8 0x81 0x20 0x4a 0xe4 0x13 0x90 + 0x4b 0xb8 0x63 0x20 0x4c 0xcd 0x30 0x10 0x4d 0x98 0x45 0x20 0x4e + 0xad 0x12 0x10 0x4f 0x78 0x27 0x20 0x50 0x8c 0xf4 0x10 0x51 0x61 + 0x43 0xa0 0x52 0x6c 0xd6 0x10 0x53 0x41 0x25 0xa0 0x54 0x4c 0xb8 + 0x10 0x55 0x21 0x07 0xa0 0x56 0x2c 0x9a 0x10 0x57 0x00 0xe9 0xa0 + 0x58 0x15 0xb6 0x90 0x58 0xe0 0xcb 0xa0 0x59 0xf5 0x98 0x90 0x5a + 0xc0 0xad 0xa0 0x5b 0xd5 0x7a 0x90 0x5c 0xa9 0xca 0x20 0x5d 0xb5 + 0x5c 0x90 0x5e 0x89 0xac 0x20 0x5f 0x95 0x3e 0x90 0x60 0x69 0x8e + 0x20 0x61 0x7e 0x5b 0x10 0x62 0x49 0x70 0x20 0x63 0x5e 0x3d 0x10 + 0x64 0x29 0x52 0x20 0x65 0x3e 0x1f 0x10 0x66 0x12 0x6e 0xa0 0x67 + 0x1e 0x01 0x10 0x67 0xf2 0x50 0xa0 0x68 0xfd 0xe3 0x10 0x69 0xd2 + 0x32 0xa0 0x6a 0xdd 0xc5 0x10 0x6b 0xb2 0x14 0xa0 0x6c 0xc6 0xe1 + 0x90 0x6d 0x91 0xf6 0xa0 0x6e 0xa6 0xc3 0x90 0x6f 0x71 0xd8 0xa0 + 0x70 0x86 0xa5 0x90 0x71 0x5a 0xf5 0x20 0x72 0x66 0x87 0x90 0x73 + 0x3a 0xd7 0x20 0x74 0x46 0x69 0x90 0x75 0x1a 0xb9 0x20 0x76 0x2f + 0x86 0x10 0x76 0xfa 0x9b 0x20 0x78 0x0f 0x68 0x10 0x78 0xda 0x7d + 0x20 0x79 0xef 0x4a 0x10 0x7a 0xba 0x5f 0x20 0x7b 0xcf 0x2c 0x10 + 0x7c 0xa3 0x7b 0xa0 0x7d 0xaf 0x0e 0x10 0x7e 0x83 0x5d 0xa0 0x7f + 0x8e 0xf0 0x10 0x01 0x02 0x01 0x02 0x03 0x02 0x04 0x05 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0xff 0xff 0x92 0x4c + 0x00 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff 0x8f 0x80 0x00 + 0x08 0xff 0xff 0x9d 0x90 0x01 0x0c 0xff 0xff 0x9d 0x90 0x01 0x10 + 0xff 0xff 0x9d 0x90 0x01 0x14 0x4c 0x4d 0x54 0x00 0x4d 0x53 0x54 + 0x00 0x50 0x53 0x54 0x00 0x50 0x44 0x54 0x00 0x50 0x57 0x54 0x00 + 0x50 0x50 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 0x00 + 0x00 0x00 0x01 0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x06 0x00 0x00 0x00 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x95 + 0x00 0x00 0x00 0x06 0x00 0x00 0x00 0x18 0xff 0xff 0xff 0xff 0xa5 + 0xb6 0xf6 0x80 0xff 0xff 0xff 0xff 0xa9 0x79 0x4f 0x70 0xff 0xff + 0xff 0xff 0xaf 0xf2 0x7c 0xf0 0xff 0xff 0xff 0xff 0xb6 0x66 0x64 + 0x70 0xff 0xff 0xff 0xff 0xb7 0x1b 0x10 0x00 0xff 0xff 0xff 0xff + 0xb8 0x0a 0xf2 0xf0 0xff 0xff 0xff 0xff 0xcb 0xea 0x8d 0x80 0xff + 0xff 0xff 0xff 0xd2 0x23 0xf4 0x70 0xff 0xff 0xff 0xff 0xd2 0x99 + 0xba 0x70 0xff 0xff 0xff 0xff 0xd7 0x1b 0x59 0x00 0xff 0xff 0xff + 0xff 0xd8 0x91 0xb4 0xf0 0xff 0xff 0xff 0xff 0xe2 0x7e 0x59 0xa0 + 0xff 0xff 0xff 0xff 0xe3 0x49 0x52 0x90 0xff 0xff 0xff 0xff 0xe4 + 0x5e 0x3b 0xa0 0xff 0xff 0xff 0xff 0xe5 0x29 0x34 0x90 0xff 0xff + 0xff 0xff 0xe6 0x47 0x58 0x20 0xff 0xff 0xff 0xff 0xe7 0x12 0x51 + 0x10 0xff 0xff 0xff 0xff 0xe8 0x27 0x3a 0x20 0xff 0xff 0xff 0xff + 0xe8 0xf2 0x33 0x10 0xff 0xff 0xff 0xff 0xea 0x07 0x1c 0x20 0xff + 0xff 0xff 0xff 0xea 0xd2 0x15 0x10 0xff 0xff 0xff 0xff 0xeb 0xe6 + 0xfe 0x20 0xff 0xff 0xff 0xff 0xec 0xb1 0xf7 0x10 0xff 0xff 0xff + 0xff 0xed 0xc6 0xe0 0x20 0xff 0xff 0xff 0xff 0xee 0x91 0xd9 0x10 + 0x00 0x00 0x00 0x00 0x0b 0xe0 0xaf 0xa0 0x00 0x00 0x00 0x00 0x0c + 0xd9 0xcd 0x10 0x00 0x00 0x00 0x00 0x0d 0xc0 0x91 0xa0 0x00 0x00 + 0x00 0x00 0x0e 0xb9 0xaf 0x10 0x00 0x00 0x00 0x00 0x0f 0xa9 0xae + 0x20 0x00 0x00 0x00 0x00 0x10 0x99 0x91 0x10 0x00 0x00 0x00 0x00 + 0x11 0x89 0x90 0x20 0x00 0x00 0x00 0x00 0x12 0x79 0x73 0x10 0x00 + 0x00 0x00 0x00 0x13 0x69 0x72 0x20 0x00 0x00 0x00 0x00 0x14 0x59 + 0x55 0x10 0x00 0x00 0x00 0x00 0x15 0x49 0x54 0x20 0x00 0x00 0x00 + 0x00 0x16 0x39 0x37 0x10 0x00 0x00 0x00 0x00 0x17 0x29 0x36 0x20 + 0x00 0x00 0x00 0x00 0x18 0x22 0x53 0x90 0x00 0x00 0x00 0x00 0x19 + 0x09 0x18 0x20 0x00 0x00 0x00 0x00 0x1a 0x02 0x35 0x90 0x00 0x00 + 0x00 0x00 0x1a 0xf2 0x34 0xa0 0x00 0x00 0x00 0x00 0x1b 0xe2 0x17 + 0x90 0x00 0x00 0x00 0x00 0x1c 0xd2 0x16 0xa0 0x00 0x00 0x00 0x00 + 0x1d 0xc1 0xf9 0x90 0x00 0x00 0x00 0x00 0x1e 0xb1 0xf8 0xa0 0x00 + 0x00 0x00 0x00 0x1f 0xa1 0xdb 0x90 0x00 0x00 0x00 0x00 0x20 0x76 + 0x2b 0x20 0x00 0x00 0x00 0x00 0x21 0x81 0xbd 0x90 0x00 0x00 0x00 + 0x00 0x22 0x56 0x0d 0x20 0x00 0x00 0x00 0x00 0x23 0x6a 0xda 0x10 + 0x00 0x00 0x00 0x00 0x24 0x35 0xef 0x20 0x00 0x00 0x00 0x00 0x25 + 0x4a 0xbc 0x10 0x00 0x00 0x00 0x00 0x26 0x15 0xd1 0x20 0x00 0x00 + 0x00 0x00 0x27 0x2a 0x9e 0x10 0x00 0x00 0x00 0x00 0x27 0xfe 0xed + 0xa0 0x00 0x00 0x00 0x00 0x29 0x0a 0x80 0x10 0x00 0x00 0x00 0x00 + 0x29 0xde 0xcf 0xa0 0x00 0x00 0x00 0x00 0x2a 0xea 0x62 0x10 0x00 + 0x00 0x00 0x00 0x2b 0xbe 0xb1 0xa0 0x00 0x00 0x00 0x00 0x2c 0xd3 + 0x7e 0x90 0x00 0x00 0x00 0x00 0x2d 0x9e 0x93 0xa0 0x00 0x00 0x00 + 0x00 0x2e 0xb3 0x60 0x90 0x00 0x00 0x00 0x00 0x2f 0x7e 0x75 0xa0 + 0x00 0x00 0x00 0x00 0x30 0x93 0x42 0x90 0x00 0x00 0x00 0x00 0x31 + 0x67 0x92 0x20 0x00 0x00 0x00 0x00 0x32 0x73 0x24 0x90 0x00 0x00 + 0x00 0x00 0x33 0x47 0x74 0x20 0x00 0x00 0x00 0x00 0x34 0x53 0x06 + 0x90 0x00 0x00 0x00 0x00 0x35 0x27 0x56 0x20 0x00 0x00 0x00 0x00 + 0x36 0x32 0xe8 0x90 0x00 0x00 0x00 0x00 0x37 0x07 0x38 0x20 0x00 + 0x00 0x00 0x00 0x38 0x1c 0x05 0x10 0x00 0x00 0x00 0x00 0x38 0xe7 + 0x1a 0x20 0x00 0x00 0x00 0x00 0x39 0xfb 0xe7 0x10 0x00 0x00 0x00 + 0x00 0x3a 0xc6 0xfc 0x20 0x00 0x00 0x00 0x00 0x3b 0xdb 0xc9 0x10 + 0x00 0x00 0x00 0x00 0x3c 0xb0 0x18 0xa0 0x00 0x00 0x00 0x00 0x3d + 0xbb 0xab 0x10 0x00 0x00 0x00 0x00 0x3e 0x8f 0xfa 0xa0 0x00 0x00 + 0x00 0x00 0x3f 0x9b 0x8d 0x10 0x00 0x00 0x00 0x00 0x40 0x6f 0xdc + 0xa0 0x00 0x00 0x00 0x00 0x41 0x84 0xa9 0x90 0x00 0x00 0x00 0x00 + 0x42 0x4f 0xbe 0xa0 0x00 0x00 0x00 0x00 0x43 0x64 0x8b 0x90 0x00 + 0x00 0x00 0x00 0x44 0x2f 0xa0 0xa0 0x00 0x00 0x00 0x00 0x45 0x44 + 0x6d 0x90 0x00 0x00 0x00 0x00 0x46 0x0f 0x82 0xa0 0x00 0x00 0x00 + 0x00 0x47 0x24 0x4f 0x90 0x00 0x00 0x00 0x00 0x47 0xf8 0x9f 0x20 + 0x00 0x00 0x00 0x00 0x49 0x04 0x31 0x90 0x00 0x00 0x00 0x00 0x49 + 0xd8 0x81 0x20 0x00 0x00 0x00 0x00 0x4a 0xe4 0x13 0x90 0x00 0x00 + 0x00 0x00 0x4b 0xb8 0x63 0x20 0x00 0x00 0x00 0x00 0x4c 0xcd 0x30 + 0x10 0x00 0x00 0x00 0x00 0x4d 0x98 0x45 0x20 0x00 0x00 0x00 0x00 + 0x4e 0xad 0x12 0x10 0x00 0x00 0x00 0x00 0x4f 0x78 0x27 0x20 0x00 + 0x00 0x00 0x00 0x50 0x8c 0xf4 0x10 0x00 0x00 0x00 0x00 0x51 0x61 + 0x43 0xa0 0x00 0x00 0x00 0x00 0x52 0x6c 0xd6 0x10 0x00 0x00 0x00 + 0x00 0x53 0x41 0x25 0xa0 0x00 0x00 0x00 0x00 0x54 0x4c 0xb8 0x10 + 0x00 0x00 0x00 0x00 0x55 0x21 0x07 0xa0 0x00 0x00 0x00 0x00 0x56 + 0x2c 0x9a 0x10 0x00 0x00 0x00 0x00 0x57 0x00 0xe9 0xa0 0x00 0x00 + 0x00 0x00 0x58 0x15 0xb6 0x90 0x00 0x00 0x00 0x00 0x58 0xe0 0xcb + 0xa0 0x00 0x00 0x00 0x00 0x59 0xf5 0x98 0x90 0x00 0x00 0x00 0x00 + 0x5a 0xc0 0xad 0xa0 0x00 0x00 0x00 0x00 0x5b 0xd5 0x7a 0x90 0x00 + 0x00 0x00 0x00 0x5c 0xa9 0xca 0x20 0x00 0x00 0x00 0x00 0x5d 0xb5 + 0x5c 0x90 0x00 0x00 0x00 0x00 0x5e 0x89 0xac 0x20 0x00 0x00 0x00 + 0x00 0x5f 0x95 0x3e 0x90 0x00 0x00 0x00 0x00 0x60 0x69 0x8e 0x20 + 0x00 0x00 0x00 0x00 0x61 0x7e 0x5b 0x10 0x00 0x00 0x00 0x00 0x62 + 0x49 0x70 0x20 0x00 0x00 0x00 0x00 0x63 0x5e 0x3d 0x10 0x00 0x00 + 0x00 0x00 0x64 0x29 0x52 0x20 0x00 0x00 0x00 0x00 0x65 0x3e 0x1f + 0x10 0x00 0x00 0x00 0x00 0x66 0x12 0x6e 0xa0 0x00 0x00 0x00 0x00 + 0x67 0x1e 0x01 0x10 0x00 0x00 0x00 0x00 0x67 0xf2 0x50 0xa0 0x00 + 0x00 0x00 0x00 0x68 0xfd 0xe3 0x10 0x00 0x00 0x00 0x00 0x69 0xd2 + 0x32 0xa0 0x00 0x00 0x00 0x00 0x6a 0xdd 0xc5 0x10 0x00 0x00 0x00 + 0x00 0x6b 0xb2 0x14 0xa0 0x00 0x00 0x00 0x00 0x6c 0xc6 0xe1 0x90 + 0x00 0x00 0x00 0x00 0x6d 0x91 0xf6 0xa0 0x00 0x00 0x00 0x00 0x6e + 0xa6 0xc3 0x90 0x00 0x00 0x00 0x00 0x6f 0x71 0xd8 0xa0 0x00 0x00 + 0x00 0x00 0x70 0x86 0xa5 0x90 0x00 0x00 0x00 0x00 0x71 0x5a 0xf5 + 0x20 0x00 0x00 0x00 0x00 0x72 0x66 0x87 0x90 0x00 0x00 0x00 0x00 + 0x73 0x3a 0xd7 0x20 0x00 0x00 0x00 0x00 0x74 0x46 0x69 0x90 0x00 + 0x00 0x00 0x00 0x75 0x1a 0xb9 0x20 0x00 0x00 0x00 0x00 0x76 0x2f + 0x86 0x10 0x00 0x00 0x00 0x00 0x76 0xfa 0x9b 0x20 0x00 0x00 0x00 + 0x00 0x78 0x0f 0x68 0x10 0x00 0x00 0x00 0x00 0x78 0xda 0x7d 0x20 + 0x00 0x00 0x00 0x00 0x79 0xef 0x4a 0x10 0x00 0x00 0x00 0x00 0x7a + 0xba 0x5f 0x20 0x00 0x00 0x00 0x00 0x7b 0xcf 0x2c 0x10 0x00 0x00 + 0x00 0x00 0x7c 0xa3 0x7b 0xa0 0x00 0x00 0x00 0x00 0x7d 0xaf 0x0e + 0x10 0x00 0x00 0x00 0x00 0x7e 0x83 0x5d 0xa0 0x00 0x00 0x00 0x00 + 0x7f 0x8e 0xf0 0x10 0x01 0x02 0x01 0x02 0x03 0x02 0x04 0x05 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 + 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 + 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0x03 0x02 0xff 0xff 0x92 + 0x4c 0x00 0x00 0xff 0xff 0x9d 0x90 0x00 0x04 0xff 0xff 0x8f 0x80 + 0x00 0x08 0xff 0xff 0x9d 0x90 0x01 0x0c 0xff 0xff 0x9d 0x90 0x01 + 0x10 0xff 0xff 0x9d 0x90 0x01 0x14 0x4c 0x4d 0x54 0x00 0x4d 0x53 + 0x54 0x00 0x50 0x53 0x54 0x00 0x50 0x44 0x54 0x00 0x50 0x57 0x54 + 0x00 0x50 0x50 0x54 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00 + 0x00 0x00 0x00 0x01 0x0a 0x50 0x53 0x54 0x38 0x50 0x44 0x54 0x2c + 0x4d 0x34 0x2e 0x31 0x2e 0x30 0x2c 0x4d 0x31 0x30 0x2e 0x35 0x2e + 0x30 0x0a + }] + close $f + set ::tcl::clock::ZoneinfoPaths \ + [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir] + ::tcl::clock::ClearCaches + } + -cleanup { + set ::tcl::clock::ZoneinfoPaths \ + [lrange $::tcl::clock::ZoneinfoPaths 1 end] + ::tcl::clock::ClearCaches + removeFile TijuanaTwo $tzdir2 + removeDirectory Test $tzdir + removeDirectory zoneinfo + } + -body { + clock format 2224738800 -timezone :Test/TijuanaTwo \ + -format {%Y-%m-%d %H:%M:%S %Z} + } + -result {2040-07-01 00:00:00 PDT} +} + +test clock-56.4 {Bug 3470928} {*}{ + -setup { + clock format [clock seconds] + set tzdir [makeDirectory zoneinfo] + set tzdir2 [makeDirectory Test $tzdir] + set tzfile [makeFile {} Windhoek $tzdir2] + set f [open $tzfile wb] + puts -nonewline $f [binary format c* { + 0x54 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x06 0x00 0x00 + 0x00 0x06 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x5c 0x00 0x00 0x00 + 0x06 0x00 0x00 0x00 0x13 0x82 0x46 0xcf 0x68 0xcc 0xae 0x8c 0x80 + 0xcd 0x9e 0x6f 0x70 0x26 0x06 0xa7 0xe0 0x2d 0x9d 0xea 0xe0 0x2e + 0x69 0x1c 0x10 0x2f 0x7d 0xe9 0x00 0x30 0x48 0xfe 0x10 0x31 0x67 + 0x05 0x80 0x32 0x28 0xe0 0x10 0x33 0x46 0xe7 0x80 0x34 0x11 0xfc + 0x90 0x35 0x26 0xc9 0x80 0x35 0xf1 0xde 0x90 0x37 0x06 0xab 0x80 + 0x37 0xd1 0xc0 0x90 0x38 0xe6 0x8d 0x80 0x39 0xb1 0xa2 0x90 0x3a + 0xc6 0x6f 0x80 0x3b 0x91 0x84 0x90 0x3c 0xaf 0x8c 0x00 0x3d 0x71 + 0x66 0x90 0x3e 0x8f 0x6e 0x00 0x3f 0x5a 0x83 0x10 0x40 0x6f 0x50 + 0x00 0x41 0x3a 0x65 0x10 0x42 0x4f 0x32 0x00 0x43 0x1a 0x47 0x10 + 0x44 0x2f 0x14 0x00 0x44 0xfa 0x29 0x10 0x46 0x0e 0xf6 0x00 0x46 + 0xda 0x0b 0x10 0x47 0xf8 0x12 0x80 0x48 0xc3 0x27 0x90 0x49 0xd7 + 0xf4 0x80 0x4a 0xa3 0x09 0x90 0x4b 0xb7 0xd6 0x80 0x4c 0x82 0xeb + 0x90 0x4d 0x97 0xb8 0x80 0x4e 0x62 0xcd 0x90 0x4f 0x77 0x9a 0x80 + 0x50 0x42 0xaf 0x90 0x51 0x60 0xb7 0x00 0x52 0x22 0x91 0x90 0x53 + 0x40 0x99 0x00 0x54 0x0b 0xae 0x10 0x55 0x20 0x7b 0x00 0x55 0xeb + 0x90 0x10 0x57 0x00 0x5d 0x00 0x57 0xcb 0x72 0x10 0x58 0xe0 0x3f + 0x00 0x59 0xab 0x54 0x10 0x5a 0xc0 0x21 0x00 0x5b 0x8b 0x36 0x10 + 0x5c 0xa9 0x3d 0x80 0x5d 0x6b 0x18 0x10 0x5e 0x89 0x1f 0x80 0x5f + 0x54 0x34 0x90 0x60 0x69 0x01 0x80 0x61 0x34 0x16 0x90 0x62 0x48 + 0xe3 0x80 0x63 0x13 0xf8 0x90 0x64 0x28 0xc5 0x80 0x64 0xf3 0xda + 0x90 0x66 0x11 0xe2 0x00 0x66 0xd3 0xbc 0x90 0x67 0xf1 0xc4 0x00 + 0x68 0xbc 0xd9 0x10 0x69 0xd1 0xa6 0x00 0x6a 0x9c 0xbb 0x10 0x6b + 0xb1 0x88 0x00 0x6c 0x7c 0x9d 0x10 0x6d 0x91 0x6a 0x00 0x6e 0x5c + 0x7f 0x10 0x6f 0x71 0x4c 0x00 0x70 0x3c 0x61 0x10 0x71 0x5a 0x68 + 0x80 0x72 0x1c 0x43 0x10 0x73 0x3a 0x4a 0x80 0x74 0x05 0x5f 0x90 + 0x75 0x1a 0x2c 0x80 0x75 0xe5 0x41 0x90 0x76 0xfa 0x0e 0x80 0x77 + 0xc5 0x23 0x90 0x78 0xd9 0xf0 0x80 0x79 0xa5 0x05 0x90 0x7a 0xb9 + 0xd2 0x80 0x7b 0x84 0xe7 0x90 0x7c 0xa2 0xef 0x00 0x7d 0x6e 0x04 + 0x10 0x7e 0x82 0xd1 0x00 0x7f 0x4d 0xe6 0x10 0x01 0x02 0x01 0x03 + 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 + 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 + 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 + 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 + 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 + 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 + 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x05 0x04 0x00 0x00 0x15 + 0x18 0x00 0x00 0x00 0x00 0x1c 0x20 0x00 0x05 0x00 0x00 0x2a 0x30 + 0x01 0x05 0x00 0x00 0x1c 0x20 0x00 0x0a 0x00 0x00 0x1c 0x20 0x01 + 0x0e 0x00 0x00 0x0e 0x10 0x00 0x01 0x53 0x57 0x41 0x54 0x00 0x53 + 0x41 0x53 0x54 0x00 0x43 0x41 0x54 0x00 0x57 0x41 0x53 0x54 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x54 + 0x5a 0x69 0x66 0x32 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x07 0x00 0x00 0x00 + 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x5d 0x00 0x00 0x00 0x07 + 0x00 0x00 0x00 0x17 0xff 0xff 0xff 0xff 0x6d 0x7b 0x4b 0x78 0xff + 0xff 0xff 0xff 0x82 0x46 0xcf 0x68 0xff 0xff 0xff 0xff 0xcc 0xae + 0x8c 0x80 0xff 0xff 0xff 0xff 0xcd 0x9e 0x6f 0x70 0x00 0x00 0x00 + 0x00 0x26 0x06 0xa7 0xe0 0x00 0x00 0x00 0x00 0x2d 0x9d 0xea 0xe0 + 0x00 0x00 0x00 0x00 0x2e 0x69 0x1c 0x10 0x00 0x00 0x00 0x00 0x2f + 0x7d 0xe9 0x00 0x00 0x00 0x00 0x00 0x30 0x48 0xfe 0x10 0x00 0x00 + 0x00 0x00 0x31 0x67 0x05 0x80 0x00 0x00 0x00 0x00 0x32 0x28 0xe0 + 0x10 0x00 0x00 0x00 0x00 0x33 0x46 0xe7 0x80 0x00 0x00 0x00 0x00 + 0x34 0x11 0xfc 0x90 0x00 0x00 0x00 0x00 0x35 0x26 0xc9 0x80 0x00 + 0x00 0x00 0x00 0x35 0xf1 0xde 0x90 0x00 0x00 0x00 0x00 0x37 0x06 + 0xab 0x80 0x00 0x00 0x00 0x00 0x37 0xd1 0xc0 0x90 0x00 0x00 0x00 + 0x00 0x38 0xe6 0x8d 0x80 0x00 0x00 0x00 0x00 0x39 0xb1 0xa2 0x90 + 0x00 0x00 0x00 0x00 0x3a 0xc6 0x6f 0x80 0x00 0x00 0x00 0x00 0x3b + 0x91 0x84 0x90 0x00 0x00 0x00 0x00 0x3c 0xaf 0x8c 0x00 0x00 0x00 + 0x00 0x00 0x3d 0x71 0x66 0x90 0x00 0x00 0x00 0x00 0x3e 0x8f 0x6e + 0x00 0x00 0x00 0x00 0x00 0x3f 0x5a 0x83 0x10 0x00 0x00 0x00 0x00 + 0x40 0x6f 0x50 0x00 0x00 0x00 0x00 0x00 0x41 0x3a 0x65 0x10 0x00 + 0x00 0x00 0x00 0x42 0x4f 0x32 0x00 0x00 0x00 0x00 0x00 0x43 0x1a + 0x47 0x10 0x00 0x00 0x00 0x00 0x44 0x2f 0x14 0x00 0x00 0x00 0x00 + 0x00 0x44 0xfa 0x29 0x10 0x00 0x00 0x00 0x00 0x46 0x0e 0xf6 0x00 + 0x00 0x00 0x00 0x00 0x46 0xda 0x0b 0x10 0x00 0x00 0x00 0x00 0x47 + 0xf8 0x12 0x80 0x00 0x00 0x00 0x00 0x48 0xc3 0x27 0x90 0x00 0x00 + 0x00 0x00 0x49 0xd7 0xf4 0x80 0x00 0x00 0x00 0x00 0x4a 0xa3 0x09 + 0x90 0x00 0x00 0x00 0x00 0x4b 0xb7 0xd6 0x80 0x00 0x00 0x00 0x00 + 0x4c 0x82 0xeb 0x90 0x00 0x00 0x00 0x00 0x4d 0x97 0xb8 0x80 0x00 + 0x00 0x00 0x00 0x4e 0x62 0xcd 0x90 0x00 0x00 0x00 0x00 0x4f 0x77 + 0x9a 0x80 0x00 0x00 0x00 0x00 0x50 0x42 0xaf 0x90 0x00 0x00 0x00 + 0x00 0x51 0x60 0xb7 0x00 0x00 0x00 0x00 0x00 0x52 0x22 0x91 0x90 + 0x00 0x00 0x00 0x00 0x53 0x40 0x99 0x00 0x00 0x00 0x00 0x00 0x54 + 0x0b 0xae 0x10 0x00 0x00 0x00 0x00 0x55 0x20 0x7b 0x00 0x00 0x00 + 0x00 0x00 0x55 0xeb 0x90 0x10 0x00 0x00 0x00 0x00 0x57 0x00 0x5d + 0x00 0x00 0x00 0x00 0x00 0x57 0xcb 0x72 0x10 0x00 0x00 0x00 0x00 + 0x58 0xe0 0x3f 0x00 0x00 0x00 0x00 0x00 0x59 0xab 0x54 0x10 0x00 + 0x00 0x00 0x00 0x5a 0xc0 0x21 0x00 0x00 0x00 0x00 0x00 0x5b 0x8b + 0x36 0x10 0x00 0x00 0x00 0x00 0x5c 0xa9 0x3d 0x80 0x00 0x00 0x00 + 0x00 0x5d 0x6b 0x18 0x10 0x00 0x00 0x00 0x00 0x5e 0x89 0x1f 0x80 + 0x00 0x00 0x00 0x00 0x5f 0x54 0x34 0x90 0x00 0x00 0x00 0x00 0x60 + 0x69 0x01 0x80 0x00 0x00 0x00 0x00 0x61 0x34 0x16 0x90 0x00 0x00 + 0x00 0x00 0x62 0x48 0xe3 0x80 0x00 0x00 0x00 0x00 0x63 0x13 0xf8 + 0x90 0x00 0x00 0x00 0x00 0x64 0x28 0xc5 0x80 0x00 0x00 0x00 0x00 + 0x64 0xf3 0xda 0x90 0x00 0x00 0x00 0x00 0x66 0x11 0xe2 0x00 0x00 + 0x00 0x00 0x00 0x66 0xd3 0xbc 0x90 0x00 0x00 0x00 0x00 0x67 0xf1 + 0xc4 0x00 0x00 0x00 0x00 0x00 0x68 0xbc 0xd9 0x10 0x00 0x00 0x00 + 0x00 0x69 0xd1 0xa6 0x00 0x00 0x00 0x00 0x00 0x6a 0x9c 0xbb 0x10 + 0x00 0x00 0x00 0x00 0x6b 0xb1 0x88 0x00 0x00 0x00 0x00 0x00 0x6c + 0x7c 0x9d 0x10 0x00 0x00 0x00 0x00 0x6d 0x91 0x6a 0x00 0x00 0x00 + 0x00 0x00 0x6e 0x5c 0x7f 0x10 0x00 0x00 0x00 0x00 0x6f 0x71 0x4c + 0x00 0x00 0x00 0x00 0x00 0x70 0x3c 0x61 0x10 0x00 0x00 0x00 0x00 + 0x71 0x5a 0x68 0x80 0x00 0x00 0x00 0x00 0x72 0x1c 0x43 0x10 0x00 + 0x00 0x00 0x00 0x73 0x3a 0x4a 0x80 0x00 0x00 0x00 0x00 0x74 0x05 + 0x5f 0x90 0x00 0x00 0x00 0x00 0x75 0x1a 0x2c 0x80 0x00 0x00 0x00 + 0x00 0x75 0xe5 0x41 0x90 0x00 0x00 0x00 0x00 0x76 0xfa 0x0e 0x80 + 0x00 0x00 0x00 0x00 0x77 0xc5 0x23 0x90 0x00 0x00 0x00 0x00 0x78 + 0xd9 0xf0 0x80 0x00 0x00 0x00 0x00 0x79 0xa5 0x05 0x90 0x00 0x00 + 0x00 0x00 0x7a 0xb9 0xd2 0x80 0x00 0x00 0x00 0x00 0x7b 0x84 0xe7 + 0x90 0x00 0x00 0x00 0x00 0x7c 0xa2 0xef 0x00 0x00 0x00 0x00 0x00 + 0x7d 0x6e 0x04 0x10 0x00 0x00 0x00 0x00 0x7e 0x82 0xd1 0x00 0x00 + 0x00 0x00 0x00 0x7f 0x4d 0xe6 0x10 0x01 0x02 0x03 0x02 0x04 0x06 + 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 + 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 + 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 + 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 + 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 + 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 + 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x06 0x05 0x00 0x00 0x10 0x08 + 0x00 0x00 0x00 0x00 0x15 0x18 0x00 0x04 0x00 0x00 0x1c 0x20 0x00 + 0x09 0x00 0x00 0x2a 0x30 0x01 0x09 0x00 0x00 0x1c 0x20 0x00 0x0e + 0x00 0x00 0x1c 0x20 0x01 0x12 0x00 0x00 0x0e 0x10 0x00 0x05 0x4c + 0x4d 0x54 0x00 0x53 0x57 0x41 0x54 0x00 0x53 0x41 0x53 0x54 0x00 + 0x43 0x41 0x54 0x00 0x57 0x41 0x53 0x54 0x00 0x00 0x00 0x00 0x00 + 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x0a 0x57 0x41 + 0x54 0x2d 0x31 0x57 0x41 0x53 0x54 0x2c 0x4d 0x39 0x2e 0x31 0x2e + 0x30 0x2c 0x4d 0x34 0x2e 0x31 0x2e 0x30 0x0a + }] + close $f + set ::tcl::clock::ZoneinfoPaths \ + [linsert $::tcl::clock::ZoneinfoPaths 0 $tzdir] + ::tcl::clock::ClearCaches + } + -body { + clock format 1326054606 -timezone :Test/Windhoek + } + -cleanup { + set ::tcl::clock::ZoneinfoPaths \ + [lrange $::tcl::clock::ZoneinfoPaths 1 end] + ::tcl::clock::ClearCaches + removeFile Windhoek $tzdir2 + removeDirectory Test $tzdir + removeDirectory zoneinfo + } + -result {Sun Jan 08 22:30:06 WAST 2012} +} + +test clock-57.1 {clock scan - abbreviated options} { + clock scan 1970-01-01 -f %Y-%m-%d -g true +} 0 + +test clock-58.1 {clock l10n - Japanese localisation} {*}{ + -setup { + proc backslashify { string } { + + set retval {} + foreach char [split $string {}] { + scan $char %c ccode + if { $ccode >= 0x0020 && $ccode < 0x007f + && $char ne "\{" && $char ne "\}" && $char ne "\[" + && $char ne "\]" && $char ne "\\" && $char ne "\$" } { + append retval $char + } else { + append retval \\u [format %04x $ccode] + } + } + return $retval + } + } + -body { + set trouble {} + foreach {date jdate} [list \ + 1872-12-31 \u897f\u66a61872\u5e7412\u670831\u65e5 \ + 1873-01-01 \u660e\u6cbb06\u5e7401\u670801\u65e5 \ + 1912-07-29 \u660e\u6cbb45\u5e7407\u670829\u65e5 \ + 1912-07-30 \u5927\u6b6301\u5e7407\u670830\u65e5 \ + 1926-12-24 \u5927\u6b6315\u5e7412\u670824\u65e5 \ + 1926-12-25 \u662d\u548c01\u5e7412\u670825\u65e5 \ + 1989-01-07 \u662d\u548c64\u5e7401\u670807\u65e5 \ + 1989-01-08 \u5e73\u621001\u5e7401\u670808\u65e5 \ + ] { + set status [catch { + set secs [clock scan $date \ + -timezone +0900 \ + -locale ja_JP \ + -format %Y-%m-%d] + set jda [clock format $secs \ + -timezone +0900 \ + -locale ja_JP \ + -format %Ex] + } result] + if {$status != 0} { + append trouble \n $date " gives error " $result + } elseif {$jda ne $jdate} { + append trouble \n $date " converts to " \ + [backslashify $jda] " and should be " \ + [backslashify $jdate] + } + # There is no code for scanning dates on the locale's + # alternative calendar. + continue + set status [catch { + set secs [clock scan $jdate \ + -timezone +0900 \ + -locale ja_JP \ + -format %Ex] + set da [clock format $secs \ + -timezone +0900 \ + -locale ja_JP \ + -format %Y-%m-%d] + } result] + if {$status != 0} { + append trouble \n [backslashify $jdate] " gives error " $result + } elseif {$da ne $date} { + append trouble \n [backslashify $jdate] " converts to " \ + $da " and should be " $date + } + } + set trouble + } + -cleanup { + rename backslashify {} + } + -result {} +} + +test clock-59.1 {military time zones} { + set hour 0 + set base [clock scan "20000101 000000" -format "%Y%m%d %H%M%S" -gmt 1] + set trouble {} + foreach {pzone mzone} { + Z Z A N B O C P D Q E R F S G T H U I V K W L X M Y + } { + catch {clock scan "20000101 000000 $pzone" \ + -format "%Y%m%d %H%M%S %Z"} ps1 + catch {clock scan "20000101 000000 $pzone"} ps2 + catch {clock scan "20000101 000000 $mzone" \ + -format "%Y%m%d %H%M%S %Z"} ms1 + catch {clock scan "20000101 000000 $mzone"} ms2 + if {$ps1 != $base - 3600 * $hour} { + lappend trouble [list pzone $pzone hour $hour ps1 is $ps1] + } + if {$ps2 != $base - 3600 * $hour} { + lappend trouble [list pzone $pzone ps2 is $ps2] + } + if {$ms1 != $base + 3600 * $hour} { + lappend trouble [list mzone $mzone ms1 is $ms1] + } + if {$ms2 != $base + 3600 * $hour} { + lappend trouble [list mzone $mzone ms2 is $ms2] + } + incr hour + } + join $trouble \n +} {} + +# case-insensitive matching of weekday and month names [Bug 1781282] + +test clock-60.1 {case insensitive weekday names} { + clock scan "2000-W01 monday" -gmt true -format "%G-W%V %a" +} [clock scan "2000-W01-1" -gmt true -format "%G-W%V-%u"] +test clock-60.2 {case insensitive weekday names} { + clock scan "2000-W01 Monday" -gmt true -format "%G-W%V %a" +} [clock scan "2000-W01-1" -gmt true -format "%G-W%V-%u"] +test clock-60.3 {case insensitive weekday names} { + clock scan "2000-W01 MONDAY" -gmt true -format "%G-W%V %a" +} [clock scan "2000-W01-1" -gmt true -format "%G-W%V-%u"] +test clock-60.4 {case insensitive weekday names} { + clock scan "2000-W01 friday" -gmt true -format "%G-W%V %a" +} [clock scan "2000-W01-5" -gmt true -format "%G-W%V-%u"] +test clock-60.5 {case insensitive weekday names} { + clock scan "2000-W01 Friday" -gmt true -format "%G-W%V %a" +} [clock scan "2000-W01-5" -gmt true -format "%G-W%V-%u"] +test clock-60.6 {case insensitive weekday names} { + clock scan "2000-W01 FRIDAY" -gmt true -format "%G-W%V %a" +} [clock scan "2000-W01-5" -gmt true -format "%G-W%V-%u"] +test clock-60.7 {case insensitive month names} { + clock scan "1 january 2000" -gmt true -format "%d %b %Y" +} [clock scan "2000-01-01" -gmt true -format "%Y-%m-%d"] +test clock-60.8 {case insensitive month names} { + clock scan "1 January 2000" -gmt true -format "%d %b %Y" +} [clock scan "2000-01-01" -gmt true -format "%Y-%m-%d"] +test clock-60.9 {case insensitive month names} { + clock scan "1 JANUARY 2000" -gmt true -format "%d %b %Y" +} [clock scan "2000-01-01" -gmt true -format "%Y-%m-%d"] +test clock-60.10 {case insensitive month names} { + clock scan "1 december 2000" -gmt true -format "%d %b %Y" +} [clock scan "2000-12-01" -gmt true -format "%Y-%m-%d"] +test clock-60.11 {case insensitive month names} { + clock scan "1 December 2000" -gmt true -format "%d %b %Y" +} [clock scan "2000-12-01" -gmt true -format "%Y-%m-%d"] +test clock-60.12 {case insensitive month names} { + clock scan "1 DECEMBER 2000" -gmt true -format "%d %b %Y" +} [clock scan "2000-12-01" -gmt true -format "%Y-%m-%d"] + +test clock-61.1 {overflow of a wide integer on output} {*}{ + -body { + clock format 0x8000000000000000 -format %s -gmt true + } + -result {integer value too large to represent} + -returnCodes error +} +test clock-61.2 {overflow of a wide integer on output} {*}{ + -body { + clock format -0x8000000000000001 -format %s -gmt true + } + -result {integer value too large to represent} + -returnCodes error +} +test clock-61.3 {near-miss overflow of a wide integer on output} { + clock format 0x7fffffffffffffff -format %s -gmt true +} [expr 0x7fffffffffffffff] +test clock-61.4 {near-miss overflow of a wide integer on output} { + clock format -0x8000000000000000 -format %s -gmt true +} [expr -0x8000000000000000] + +test clock-62.1 {Bug 1902423} {*}{ + -setup {::tcl::clock::ClearCaches} + -body { + set s 1204049747 + set f1 [clock format $s -format {%Y-%m-%d %T} -locale C] + set f2 [clock format $s -format {%Y-%m-%d %H:%M:%S} -locale C] + if {$f1 ne $f2} { + subst "$f2 is not $f1" + } else { + subst "ok" + } + } + -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} +} + +test clock-64.1 {:: in format string [Bug 2362156]} {*}{ + -body { + clock scan 2001-02-03::04:05:06 -gmt 1 -format %Y-%m-%d::%H:%M:%S + } + -result 981173106 +} +test clock-64.2 {:: in format string [Bug 2362156]} {*}{ + -body { + clock format 981173106 -gmt 1 -format %Y-%m-%d::%H:%M:%S + } + -result 2001-02-03::04:05:06 +} + +test clock-65.1 {clock add, bad option [Bug 2481670]} {*}{ + -body { + clock add 0 1 year -foo bar + } + -match glob + -returnCodes error + -result {bad switch "-foo"*} +} + +test clock-66.1 {clock scan, no date, never-before-seen timezone} {*}{ + -setup { + ::tcl::clock::ClearCaches + } + -body { + clock scan 1200 \ + -timezone {<EST>+05:00:00<EDT>+04:00:00,M3.2.0/02:00:00,M11.1.0/02:00:00} \ + -base 1256529600 \ + -format %H%M + } + -result 1256572800 +} + +test clock-67.1 {clock format, %% with a letter following [Bug 2819334]} { + clock format [clock seconds] -format %%r +} %r + +test clock-67.2 {Bug d19a30db57} -body { + # error, not segfault + tcl::clock::GetJulianDayFromEraYearMonthDay {} 2361222 +} -returnCodes error -match glob -result * +test clock-67.3 {Bug d19a30db57} -body { + # error, not segfault + tcl::clock::GetJulianDayFromEraYearWeekDay {} 2361222 +} -returnCodes error -match glob -result * # cleanup |