diff options
author | dgp <dgp@users.sourceforge.net> | 2020-04-30 13:58:08 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2020-04-30 13:58:08 (GMT) |
commit | f2e39886dc9ac10747e5d878241ed4562ad1daf3 (patch) | |
tree | 05fe442cd3e3685d0576b6744ead87a65062b401 /tests | |
parent | d7c4bec3d28476bba726304bad81a27589d6f38b (diff) | |
download | tcl-f2e39886dc9ac10747e5d878241ed4562ad1daf3.zip tcl-f2e39886dc9ac10747e5d878241ed4562ad1daf3.tar.gz tcl-f2e39886dc9ac10747e5d878241ed4562ad1daf3.tar.bz2 |
Split a test so other builds are covered.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utf.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/utf.test b/tests/utf.test index 68353c8..7f83eb7 100644 --- a/tests/utf.test +++ b/tests/utf.test @@ -490,7 +490,10 @@ test utf-6.91 {Tcl_UtfNext, validity check [493dccc2de]} testutfnext { test utf-6.92 {Tcl_UtfNext, pointing to 2th byte of 4-byte valid sequence} testutfnext { testutfnext \xA0\xA0\xA0 } 1 -test utf-6.93 {Tcl_UtfNext, pointing to 2th byte of 4-byte invalid sequence} {testutfnext ucs2} { +test utf-6.93.0 {Tcl_UtfNext, pointing to 2th byte of 4-byte invalid sequence} {testutfnext ucs2} { + testutfnext \x80\x80\x80 +} 1 +test utf-6.93.1 {Tcl_UtfNext, pointing to 2th byte of 4-byte invalid sequence} {testutfnext fullutf} { testutfnext \x80\x80\x80 } 1 test utf-6.94 {Tcl_UtfNext, pointing to 2th byte of 5-byte invalid sequence} testutfnext { |