diff options
author | Kai Kang <kai.kang@windriver.com> | 2013-06-20 21:38:25 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-20 15:12:21 +0100 |
commit | d3027b3e9b8cd78e0f310206b34bfdd457f63d84 (patch) | |
tree | 9338f67d12ae93735714898da1428ef9af790a66 /meta/recipes-devtools/tcltk/tcl | |
parent | a58a1e63d70b349b0be65d94abe426871dcbb090 (diff) | |
download | poky-d3027b3e9b8cd78e0f310206b34bfdd457f63d84.tar.gz |
tcl: fix unit test boundary year issue
Unit test clock.test check the boundary year 2099 which is not
inclusive. Include 2099 to be a valide year number.
(From OE-Core rev: c6386c8661f18f6b9104c74345120a56e2330ea4)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch b/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch new file mode 100644 index 0000000000..eef18128e1 --- /dev/null +++ b/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | From f10135df3f4751d7c83a66561c988ae799b6372f Mon Sep 17 00:00:00 2001 | ||
2 | From: "Song.Li" <Song.Li@windriver.com> | ||
3 | Date: Fri, 10 Aug 2012 13:07:20 +0800 | ||
4 | Subject: [PATCH] let DST include year 2099 | ||
5 | |||
6 | tcl puts Daylight Saving Time in deffect from 1916 to 2099, | ||
7 | it should include the year 2099,becuase tcl | ||
8 | self-contained testing have a DST testcase on 2099. | ||
9 | so the condition statement "<2099" should be "<=2099" | ||
10 | |||
11 | Upstream-Status: Submitted | ||
12 | |||
13 | Signed-off-by: Song.Li <Song.Li@windriver.com> | ||
14 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
15 | |||
16 | --- | ||
17 | library/clock.tcl | 2 +- | ||
18 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
19 | |||
20 | diff --git a/library/clock.tcl b/library/clock.tcl | ||
21 | index 2e9cae7..e8efe4a 100644 | ||
22 | --- a/library/clock.tcl | ||
23 | +++ b/library/clock.tcl | ||
24 | @@ -3945,7 +3945,7 @@ proc ::tcl::clock::ProcessPosixTimeZone { z } { | ||
25 | |||
26 | # Put DST in effect in all years from 1916 to 2099. | ||
27 | |||
28 | - for { set y 1916 } { $y < 2099 } { incr y } { | ||
29 | + for { set y 1916 } { $y <= 2099 } { incr y } { | ||
30 | set startTime [DeterminePosixDSTTime $z start $y] | ||
31 | incr startTime [expr { - wide($stdOffset) }] | ||
32 | set endTime [DeterminePosixDSTTime $z end $y] | ||
33 | -- | ||
34 | 1.7.9.5 | ||
35 | |||