summaryrefslogtreecommitdiffstats
path: root/tests/clock.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-05-27 13:58:09 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-05-27 13:58:09 (GMT)
commitdc1e5ec547a5635acaa9d6c052c696db6bc87849 (patch)
tree174bf84af4383638ee9384bc90578655482c4381 /tests/clock.test
parentdf118049469eba4e68b43e2abf902284059c0d3f (diff)
downloadtcl-dc1e5ec547a5635acaa9d6c052c696db6bc87849.zip
tcl-dc1e5ec547a5635acaa9d6c052c696db6bc87849.tar.gz
tcl-dc1e5ec547a5635acaa9d6c052c696db6bc87849.tar.bz2
Proposed soution for [a1bd37b719]: clock (free)scan of ISO 8601 timestamp with literal T behaves strange
(I like it!)
Diffstat (limited to 'tests/clock.test')
-rw-r--r--tests/clock.test12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/clock.test b/tests/clock.test
index 9c59b03..df0315b 100644
--- a/tests/clock.test
+++ b/tests/clock.test
@@ -35474,7 +35474,7 @@ test clock-33.5 {clock clicks tests, millisecond timing test} {
# 60 msecs seems to be the max time slice under Windows 95/98
expr {
($end > $start) && (($end - $start) <= 60) ?
- "ok" :
+ "ok" :
"test should have taken 0-60 ms, actually took [expr $end - $start]"}
} {ok}
test clock-33.5a {clock tests, millisecond timing test} {
@@ -35490,7 +35490,7 @@ test clock-33.5a {clock tests, millisecond timing test} {
# 60 msecs seems to be the max time slice under Windows 95/98
expr {
($end > $start) && (($end - $start) <= 60) ?
- "ok" :
+ "ok" :
"test should have taken 0-60 ms, actually took [expr $end - $start]"}
} {ok}
test clock-33.6 {clock clicks, milli with too much abbreviation} {
@@ -35664,6 +35664,14 @@ test clock-34.18 {clock scan, ISO 8601 point in time format} {
set time [clock scan "19921023T000000"]
clock format $time -format {%b %d, %Y %H:%M:%S}
} "Oct 23, 1992 00:00:00"
+test clock-34.19 {clock scan, ISO 8601 point in time format} {
+ set time [clock scan "19921023T00:00:00"]
+ clock format $time -format {%b %d, %Y %H:%M:%S}
+} "Oct 23, 1992 00:00:00"
+test clock-34.20 {clock scan, ISO 8601 point in time format} {
+ set time [clock scan "1992-10-23T00:00:00"]
+ clock format $time -format {%b %d, %Y %H:%M:%S}
+} "Oct 23, 1992 00:00:00"
# CLOCK SCAN REAL TESTS
# We use 5am PST, 31-12-1999 as the base for these scans because irrespective