diff options
author | James McCoy <jamessan@jamessan.com> | 2018-11-15 16:25:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 16:25:29 -0500 |
commit | 25356f2802b5b98efe7f0d6661979b0a919c4d2d (patch) | |
tree | 2d27279fc8aa875def845cfedd15566011d83b5a | |
parent | d81b9d5ec536ff7a9dbb35892adb1d1cd1651026 (diff) | |
parent | c344f4b6aea7c985fee211a4263935362579d716 (diff) | |
download | rneovim-25356f2802b5b98efe7f0d6661979b0a919c4d2d.tar.gz rneovim-25356f2802b5b98efe7f0d6661979b0a919c4d2d.tar.bz2 rneovim-25356f2802b5b98efe7f0d6661979b0a919c4d2d.zip |
Merge pull request #9240 from jamessan/mbyte_spec-failure
unit/mbyte_spec: Run utf_char2bytes test in batches of 0xFFF characters
-rw-r--r-- | test/unit/mbyte_spec.lua | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/test/unit/mbyte_spec.lua b/test/unit/mbyte_spec.lua index 1e7e9fd6e6..3e65537270 100644 --- a/test/unit/mbyte_spec.lua +++ b/test/unit/mbyte_spec.lua @@ -43,15 +43,17 @@ describe('mbyte', function() -- Sequences with more than four bytes end) - itp('utf_char2bytes', function() - local char_p = ffi.typeof('char[?]') - for c = 0, 0xFFFF do - local p = char_p(4, 0) - mbyte.utf_char2bytes(c, p) - eq(c, mbyte.utf_ptr2char(p)) - eq(charset.vim_iswordc(c), charset.vim_iswordp(p)) - end - end) + for n = 0, 0xF do + itp(('utf_char2bytes for chars 0x%x - 0x%x'):format(n * 0x1000, n * 0x1000 + 0xFFF), function() + local char_p = ffi.typeof('char[?]') + for c = n * 0x1000, n * 0x1000 + 0xFFF do + local p = char_p(4, 0) + mbyte.utf_char2bytes(c, p) + eq(c, mbyte.utf_ptr2char(p)) + eq(charset.vim_iswordc(c), charset.vim_iswordp(p)) + end + end) + end describe('utfc_ptr2char_len', function() |