-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
Description
From https://golang.org/issue/3790?c=11 #11 matrixik I found one more: MST --- FAIL: TestLocalZoneAbbr (0.00 seconds) zoneinfo_windows_test.go:18: Parse failed: parsing time "Sat, 22 Jun 2013 13:42:36 +0200" as "Mon, 02 Jan 2006 15:04:05 MST": cannot parse "+0200" as "MST" Windows 7 x32 go version devel +56909cb770fe Fri Jun 21 18:07:57 2013 -0700 windows/386 Best regards, Dobrosław Żybort Jun 23 (47 hours ago) Delete comment Project Member #12 alex.brainman matrixik, Do you mind running this program http://play.golang.org/p/vCsioBDpMk on your computer and reporting results back here? I suspect your syscall.Timezoneinformation is different from what Go supports at this moment. And I am wonering why and what to do about it. Thank you. Alex Today (12 hours ago) #13 matrixik Alex, Results: ``` i=syscall.Timezoneinformation{Bias:-60, StandardName:[32]uint16{0x15a, 0x72, 0x6f, 0x64, 0x6b, 0x6f, 0x77, 0x6f, 0x65, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x6a, 0x73, 0x6b, 0x69, 0x20, 0x63, 0x7a, 0x61, 0x73, 0x20, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x2e, 0x0, 0x0}, StandardDate:syscall.Systemtime{Year:0x0, Month:0xa, DayOfWeek:0x0, Day:0x5, Hour:0x3, Minute:0x0, Second:0x0, Milliseconds:0x0}, StandardBias:0, DaylightName:[32]uint16{0x15a, 0x72, 0x6f, 0x64, 0x6b, 0x6f, 0x77, 0x6f, 0x65, 0x75, 0x72, 0x6f, 0x70, 0x65, 0x6a, 0x73, 0x6b, 0x69, 0x20, 0x63, 0x7a, 0x61, 0x73, 0x20, 0x6c, 0x65, 0x74, 0x6e, 0x69, 0x0, 0x0, 0x0}, DaylightDate:syscall.Systemtime{Year:0x0, Month:0x3, DayOfWeek:0x0, Day:0x5, Hour:0x2, Minute:0x0, Second:0x0, Milliseconds:0x0}, DaylightBias:-60} i.StandardName="Środkowoeuropejski czas stand." i.DaylightName="Środkowoeuropejski czas letni" ``` Where: Środkowoeuropejski czas stand. = Central European Standard Time. Środkowoeuropejski czas letni = Central European Summer Time Best regards, Dobrosław Żybort