Check-in [e4a6023a61]
Not logged in

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

Overview
Comment:Remove knownProfileBug constraint: this is already fixed
Timelines: family | ancestors | descendants | both | core-8-branch
Files: files | file ages | folders
SHA3-256: e4a6023a61a5d726cc2a94283139e60ee3029c23004df48135923492c748d3b4
User & Date: jan.nijtmans 2023-03-22 21:11:12.128
Context
2023-03-23
07:27
fix for [f3cb2a32d6] Add initialization to allocation of string rep buffer to resolve valgrind repor... check-in: ca0e3d0976 user: jan.nijtmans tags: core-8-branch
2023-03-22
21:20
Simplify TIP #656 implementation. This also changes the TCL_ENCODING_PROFILE_* macro's to the same v... check-in: 8419a7023d user: jan.nijtmans tags: tip-656-simpl
21:15
Merge 9.0 check-in: f25757b233 user: jan.nijtmans tags: trunk, main
21:11
Remove knownProfileBug constraint: this is already fixed check-in: e4a6023a61 user: jan.nijtmans tags: core-8-branch
20:09
One missing int -> Tcl_Size change check-in: e84a92aa11 user: jan.nijtmans tags: core-8-branch
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to tests/io.test.
5673
5674
5675
5676
5677
5678
5679
5680
5681

5682
5683
5684
5685
5686
5687
5688
5689
5690
5673
5674
5675
5676
5677
5678
5679


5680


5681
5682
5683
5684
5685
5686
5687







-
-
+
-
-







    close $f
    set f [open $path(test1) r]
    fconfigure $f -encoding utf-8
    set x [read $f]
    close $f
    set x
} 牦
# Remove knownProfileBug constraint below post TIP656- TODO
test io-39.16 {Tcl_SetChannelOption: -encoding (shortened to "-en"), errors} -constraints {
test io-39.16 {Tcl_SetChannelOption: -encoding (shortened to "-en"), errors} -body {
    knownProfileBug
} -body {
    file delete $path(test1)
    set f [open $path(test1) w]
    fconfigure $f -en foobar
} -cleanup {
    close $f
} -returnCodes 1 -result {unknown encoding "foobar"}
test io-39.16a {Tcl_SetChannelOption: -encoding (invalid shortening to "-e"), errors} -body {