Differences From Artifact [19da5ec8b9]:
- File
build/test/tests/05-locale.tcl
— part of check-in
[205ad8c75e]
at
2010-09-26 04:48:25
on branch trunk
— Updated to create tests log with PASS/FAIL
Added additional information to Locale test (user: rkeene, size: 252) [annotate] [blame] [check-ins using]
To Artifact [995899b7e1]:
- File build/test/tests/05-locale.tcl — part of check-in [7c572fd6a8] at 2010-09-26 04:49:40 on branch trunk — Updated to support running Win32 tests under WINE (user: rkeene, size: 359) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /usr/bin/env tclsh # Tcl 8.4 doesn't support fetching the system encoding from the environment if {$tcl_version == "8.4"} { exit 0 } if {[encoding system] == "utf-8"} { exit 0 } puts "Locale: [encoding system]" puts "Expected: utf-8" | > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #! /usr/bin/env tclsh # Tcl 8.4 doesn't support fetching the system encoding from the environment if {$tcl_version == "8.4"} { exit 0 } # This test does not yet support when using Win32 if {$::tcl_platform(platform) == "windows"} { exit 0 } if {[encoding system] == "utf-8"} { exit 0 } puts "Locale: [encoding system]" puts "Expected: utf-8" |
︙ | ︙ |