summaryrefslogtreecommitdiffstats
path: root/tests/encoding.test
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-06-29 11:30:51 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-06-29 11:30:51 (GMT)
commit13b2522d41f46ad72bf40fd0eda8937c20b27905 (patch)
tree629ab87c38743b1f5445fc8a49f035a6c19bfc90 /tests/encoding.test
parent3a1e74ddc5de6f61eb41639166137552e480b08c (diff)
parent6ae93efff085e5d96d7e8e658ab64992e9e1191b (diff)
downloadtcl-13b2522d41f46ad72bf40fd0eda8937c20b27905.zip
tcl-13b2522d41f46ad72bf40fd0eda8937c20b27905.tar.gz
tcl-13b2522d41f46ad72bf40fd0eda8937c20b27905.tar.bz2
Merge 8.7 - Bug [6a3e2cb0f0] - invalid bytes in escape encodings
Diffstat (limited to 'tests/encoding.test')
-rw-r--r--tests/encoding.test9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/encoding.test b/tests/encoding.test
index edca5f0..6220cb2 100644
--- a/tests/encoding.test
+++ b/tests/encoding.test
@@ -1162,6 +1162,15 @@ test encoding-30.3 {encoding convertfrom large strings > 4GB} -constraints {
list [string length [set s [string repeat A 0x100000000]]] [string equal $s [encoding convertfrom ascii $s]]
} -result {4294967296 1}
+test encoding-bug-6a3e2cb0f0-1 {Bug [6a3e2cb0f0] - invalid bytes in escape encodings} -body {
+ encoding convertfrom -profile tcl8 iso2022-jp x\x1b\x7aaby
+} -result x\uFFFDy
+test encoding-bug-6a3e2cb0f0-2 {Bug [6a3e2cb0f0] - invalid bytes in escape encodings} -body {
+ encoding convertfrom -profile strict iso2022-jp x\x1b\x7aaby
+} -returnCodes error -result {unexpected byte sequence starting at index 1: '\x1B'}
+test encoding-bug-6a3e2cb0f0-3 {Bug [6a3e2cb0f0] - invalid bytes in escape encodings} -body {
+ encoding convertfrom -profile replace iso2022-jp x\x1b\x7aaby
+} -result x\uFFFDy
# cleanup
namespace delete ::tcl::test::encoding