summaryrefslogtreecommitdiffstats
path: root/tests/clock.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-22 14:07:39 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-22 14:07:39 (GMT)
commitf53107854d150d09590ee24be61d25f522abb678 (patch)
treeb1c16cb2de8c3e6bc00e6e35761bab1985a3cef5 /tests/clock.test
parenta85181bdcc4455c4b42e6873318fdc8232b88a52 (diff)
parent92ea491e1df5a8c3467062724cc6e6accda787a8 (diff)
downloadtcl-f53107854d150d09590ee24be61d25f522abb678.zip
tcl-f53107854d150d09590ee24be61d25f522abb678.tar.gz
tcl-f53107854d150d09590ee24be61d25f522abb678.tar.bz2
Merge 9.0
Diffstat (limited to 'tests/clock.test')
-rw-r--r--tests/clock.test16
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/clock.test b/tests/clock.test
index b7226db..a94f854 100644
--- a/tests/clock.test
+++ b/tests/clock.test
@@ -6,8 +6,8 @@
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors. No output means no errors were found.
#
-# Copyright © 2004 by Kevin B. Kenny. All rights reserved.
-# Copyright © 2015 by Sergey G. Brester aka sebres.
+# Copyright © 2004 Kevin B. Kenny. All rights reserved.
+# Copyright © 2015 Sergey G. Brester aka sebres.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
@@ -18694,6 +18694,18 @@ test clock-6.10a {input of seconds - overflow, bug [1f40aa83c5]} knownBug {
list [catch {clock scan 27670116110564327423 -format %s -gmt true} result] $result $::errorCode
} {1 {integer value too large to represent} {CLOCK dateTooLarge}}
+test clock-6.10b {input of seconds - overflow ??, bug [1f40aa83c5]} knownBug {
+ clock scan 27670116110564327423 -gmt true
+} 89170590268800
+
+test clock-6.10c {input of seconds - overflow, bug [1f40aa83c5]} {
+ list [catch {clock scan 27670116110564327424 -format %s -gmt true} result] $result $::errorCode
+} {1 {integer value too large to represent} {CLOCK dateTooLarge}}
+
+test clock-6.10d {input of seconds - overflow ??, bug [1f40aa83c5]} knownBug {
+ clock scan 27670116110564327424 -gmt true
+} -90247104115200
+
test clock-6.11 {input of seconds - two values} {
clock scan {1 2} -format {%s %s} -gmt true
} 2