Tcl Library Source Code

Check-in [d0eec3f8aa]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:[Bug 3603702]: Fixed TZ-dependent test case.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d0eec3f8aa123b6b2c9461497d6cbc1a5d10a078
User & Date: andreask 2013-02-08 19:20:48
Context
2013-02-08
23:41
Made the doc work official. We now have embedded docs, reachable in the fossil-integrated website of the project. check-in: 507de10864 user: andreask tags: trunk
19:20
[Bug 3603702]: Fixed TZ-dependent test case. check-in: d0eec3f8aa user: andreask tags: trunk
19:14
(::ncgi::DecodeHex): [Bug 3603593]: Fixed bad scoping of DecodeHex, now in the ncgi namespace instead of polluting the global. Bumped version to 1.4.2. check-in: 01dcbc7b4f user: andreask tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to modules/clock/ChangeLog.





1
2
3
4
5
6
7




2013-02-01  Andreas Kupries  <[email protected]>

	*
	* Released and tagged Tcllib 1.15 ========================
	* 

2013-01-24  Andreas Kupries  <[email protected]>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
2013-02-08  Andreas Kupries  <[email protected]>

	* iso8601.test: [Bug 3603702]: Fixed TZ-dependent test case.

2013-02-01  Andreas Kupries  <[email protected]>

	*
	* Released and tagged Tcllib 1.15 ========================
	* 

2013-01-24  Andreas Kupries  <[email protected]>

Changes to modules/clock/iso8601.test.

36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -------------------------------------------------------------------------

test clock-iso8601-2.0 {parse_date, bad input} -body {
    clock::iso8601 parse_date A
} -returnCodes error -result {not an iso8601 date string}

test clock-iso8601-2.1 {parse_date} -body {
    clock::iso8601 parse_date 1994-11-05
    # It is unclear if this is influenced by TZ.
} -result 784022400

# -------------------------------------------------------------------------

test clock-iso8601-2.0.0 {parse_date, format: 19700102, reformatted with clock format -format {%D}} -body {
    clock format [clock::iso8601 parse_date {19700102}] -format {%D}
} -result {01/02/1970}








|
<
|







36
37
38
39
40
41
42
43

44
45
46
47
48
49
50
51
# -------------------------------------------------------------------------

test clock-iso8601-2.0 {parse_date, bad input} -body {
    clock::iso8601 parse_date A
} -returnCodes error -result {not an iso8601 date string}

test clock-iso8601-2.1 {parse_date} -body {
    clock format [clock::iso8601 parse_date 1994-11-05] -format %D

} -result 11/05/1994

# -------------------------------------------------------------------------

test clock-iso8601-2.0.0 {parse_date, format: 19700102, reformatted with clock format -format {%D}} -body {
    clock format [clock::iso8601 parse_date {19700102}] -format {%D}
} -result {01/02/1970}