summaryrefslogtreecommitdiff
path: root/ext/XS-APItest/t/utf8.t
diff options
context:
space:
mode:
Diffstat (limited to 'ext/XS-APItest/t/utf8.t')
-rw-r--r--ext/XS-APItest/t/utf8.t7
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/XS-APItest/t/utf8.t b/ext/XS-APItest/t/utf8.t
index a05194cfcc..f4af4c4298 100644
--- a/ext/XS-APItest/t/utf8.t
+++ b/ext/XS-APItest/t/utf8.t
@@ -1207,9 +1207,10 @@ SKIP:
[ $utf, $utf_ch_len * 5, -4, $utf_ch_len, "utf in range b, backward" ],
[ $utf, $utf_ch_len * 5, 6, length($utf), "utf out of range, forward" ],
[ $utf, $utf_ch_len * 5, -6, 0, "utf out of range, backward" ],
- [ $bad_start, 0, 1, 1, "bad start, forward 1 from 0" ],
- [ $bad_start, 0, $utf_ch_len-1, $utf_ch_len-1, "bad start, forward ch_len-1 from 0" ],
- [ $bad_start, 0, $utf_ch_len, $utf_ch_len*2-1, "bad start, forward ch_len from 0" ],
+ [ $bad_start, 0, 1, $utf_ch_len-1, "bad start, forward 1 from 0" ],
+ [ $bad_start, 0, 5, 5 * $utf_ch_len-1, "bad start, forward 5 chars from 0" ],
+ [ $bad_start, 0, 9, length($bad_start)-$utf_ch_len, "bad start, forward 9 chars from 0" ],
+ [ $bad_start, 0, 10, length $bad_start, "bad start, forward 10 chars from 0" ],
[ $bad_start, $utf_ch_len-1, -1, 0, "bad start, back 1 from first start byte" ],
[ $bad_start, $utf_ch_len-2, -1, 0, "bad start, back 1 from before first start byte" ],
[ $bad_start, 0, -1, 0, "bad start, back 1 from 0" ],