diff options
| -rw-r--r-- | changes.md | 7 | ||||
| -rw-r--r-- | tests/encoding.test | 2 | ||||
| -rw-r--r-- | tests/exec.test | 2 |
3 files changed, 7 insertions, 4 deletions
@@ -41,13 +41,16 @@ to the userbase. - [use after free on TSD in Winsock](https://core.tcl-lang.org/tcl/tktview/40b181) - [use after free on Windows pipe handles](https://core.tcl-lang.org/tcl/tktview/7c2716) - [tcl::build-info not documented](https://core.tcl-lang.org/tcl/tktview/ef7042) - - [interp limit commands still seems to be 32 bits](https://core.tcl-lang.org/tcl/tktview/9dfae3) + - [Fix 32 bit overflow in interp limit](https://core.tcl-lang.org/tcl/tktview/9dfae3) # Incompatibilities - [The ActiveCodePage element has been removed from the Windows executable manifest for tclsh](https://core.tcl-lang.org/tips/doc/trunk/tip/716.md) # Updated bundled packages, libraries, standards, data + - Itcl 4.3.3 - sqlite3 3.49.1 + - Thread 3.0.2 + - TDBC\* 1.1.11 - tzdata 2025b Release Tcl 9.0.1 arises from the check-in with tag `core-9-0-1`. @@ -225,5 +228,5 @@ writing Tcl scripts. - [windows dos device paths inconsistencies and missing functionality](https://core.tcl-lang.org/tcl/tktview/d8f121) - [load library (dll) from zipfs-library causes a leak in temporary folder](https://core.tcl-lang.org/tcl/tktview/a8e4f7) - [lsearch -sorted -inline -subindices incorrect result](https://core.tcl-lang.org/tcl/tktview/bc4ac0) - - ["No error" when load fails due to a missing secondary DLL](https://core.tcl-lang.org/tcl/tktview/bc4ac0) + - ["No error" when load fails due to a missing secondary DLL](https://core.tcl-lang.org/tcl/tktview/66aa81c90a) diff --git a/tests/encoding.test b/tests/encoding.test index 1f6be7c..9d1351c 100644 --- a/tests/encoding.test +++ b/tests/encoding.test @@ -1236,7 +1236,7 @@ test encoding-bug-7346adc50f-failindex {OOM on convertfrom truncated iso2022 - f unset -nocomplain failix } -result [list \u304A\u8A66 7] -test encoding-bug-7346adc50f-strict {OOM on convertfrom truncated iso2022 - replace} -body { +test encoding-bug-7346adc50f-replace {OOM on convertfrom truncated iso2022 - replace} -body { encoding convertfrom -profile replace iso2022-jp "\x1b\$B\$*;n\$" } -result \u304A\u8A66\uFFFD diff --git a/tests/exec.test b/tests/exec.test index 3205f24..576f97d 100644 --- a/tests/exec.test +++ b/tests/exec.test @@ -825,7 +825,7 @@ unset cmdBuiltin # ---------------------------------------------------------------------- # cleanup -foreach file {gorp.file gorp.file2 echo echo2 cat wc sh sh2 sleep exit err} { +foreach file {gorp.file gorp.file2 echo echo2 echobin cat wc sh sh2 sleep exit err} { removeFile $file } unset -nocomplain path |
