summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2017-01-09 18:28:56 (GMT)
committersebres <sebres@users.sourceforge.net>2017-01-09 18:28:56 (GMT)
commitec306bb22e434cd0fe9c2e4b8d29fa1e23c8bee3 (patch)
tree2e12b65b7e9b80d94eb8d23ef09aea4ca6698d23
parent8b67c7f038681e564f2477f53c6920e0d35995e7 (diff)
parentf736317f655df4b12f6406d9c0b7dc96075a4868 (diff)
downloadtcl-ec306bb22e434cd0fe9c2e4b8d29fa1e23c8bee3.zip
tcl-ec306bb22e434cd0fe9c2e4b8d29fa1e23c8bee3.tar.gz
tcl-ec306bb22e434cd0fe9c2e4b8d29fa1e23c8bee3.tar.bz2
Merge fix clock test-cases from 8.6: Make test clock-67.5 time zone independent - execution fails in the time zones below gmt
-rw-r--r--tests/clock.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/clock.test b/tests/clock.test
index 08036ca..6a0fecd 100644
--- a/tests/clock.test
+++ b/tests/clock.test
@@ -37009,10 +37009,10 @@ test clock-67.5 {Change scan %x output on global locale change [Bug 4a0c163d24]}
set current [msgcat::mclocale]
} -body {
msgcat::mclocale de_de
- set res [clock scan "01.01.1970" -locale current -format %x]
+ set res [clock scan "01.01.1970" -locale current -format %x -gmt 1]
msgcat::mclocale en_uk
# This will fail without the bug fix, as still de_de is active
- expr {$res == [clock scan "01/01/1970" -locale current -format %x]}
+ expr {$res == [clock scan "01/01/1970" -locale current -format %x -gmt 1]}
} -cleanup {
msgcat::mclocale $current
} -result {1}