diff options
| author | sebres <sebres@users.sourceforge.net> | 2020-04-14 14:39:15 (GMT) |
|---|---|---|
| committer | sebres <sebres@users.sourceforge.net> | 2020-04-14 14:39:15 (GMT) |
| commit | 3e8eb733025fb2507052440fa0b2674744322adf (patch) | |
| tree | 6605dce6eba6721722e5ebaf0d07fe60a04ffe46 | |
| parent | 4343a826717f73f3345f7ff231565b1dd71d8373 (diff) | |
| download | tcl-3e8eb733025fb2507052440fa0b2674744322adf.zip tcl-3e8eb733025fb2507052440fa0b2674744322adf.tar.gz tcl-3e8eb733025fb2507052440fa0b2674744322adf.tar.bz2 | |
partially revert [e9f5ff2f6a] - encoding-15.3 used not existing command "teststringbytes" (should be "testbytesstring"? but it is not an opposite to get same result as convert to identity, so splitted to 3 new cases illustrating the results)
| -rw-r--r-- | tests/encoding.test | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/encoding.test b/tests/encoding.test index 84d271d..997b399 100644 --- a/tests/encoding.test +++ b/tests/encoding.test @@ -320,9 +320,18 @@ test encoding-15.2 {UtfToUtfProc null character output} testbytestring { binary scan [testbytestring [encoding convertto utf-8 \u0000]] H* z set z } 00 -test encoding-15.3 {UtfToUtfProc null character input} teststringbytes { +test encoding-15.3.a {UtfToUtfProc null character input} testbytestring { + binary scan [testbytestring \xc0\x80] H* z + set z +} 00 +test encoding-15.3.b {UtfToUtfProc null character input} testbytestring { + set y [encoding convertfrom utf-8 [encoding convertto utf-8 \u0000]] + binary scan [testbytestring $y] H* z + set z +} 00 +test encoding-15.3.c {UtfToUtfProc null character input} { set y [encoding convertfrom utf-8 [encoding convertto utf-8 \u0000]] - binary scan [teststringbytes $y] H* z + binary scan [encoding convertto identity $y] H* z set z } c080 test encoding-15.4 {UtfToUtfProc emoji character input} -body { |
