diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-16 22:37:10 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2022-02-17 17:06:16 +0000 |
commit | 41d0e7af2097e0374ab16fb1567cf22d21aad180 (patch) | |
tree | b50f5f45ef192da6608f8f6c963a50c0d1e96271 /test | |
parent | 8170260bb35f3761d2008405289832b2620abc53 (diff) | |
download | rneovim-41d0e7af2097e0374ab16fb1567cf22d21aad180.tar.gz rneovim-41d0e7af2097e0374ab16fb1567cf22d21aad180.tar.bz2 rneovim-41d0e7af2097e0374ab16fb1567cf22d21aad180.zip |
vim-patch:8.2.3601: check for overflow in put count does not work well
Problem: Check for overflow in put count does not work well.
Solution: Improve the overflow check. (Ozaki Kiichi, closes vim/vim#9102)
https://github.com/vim/vim/commit/fa53722367c3793fda95dac665af74b8651065e9
Add some casts as Nvim uses size_t variables in some places.
We could technically adjust the logic to check for overflow outside of size_t's
range, but it's much easier to just port the patch exactly (also means we can
use the same tests).
v:sizeoflong is N/A, so convert the 64-bit tests to Lua and use the FFI to check
long's size.
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/legacy/put_spec.lua | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/functional/legacy/put_spec.lua b/test/functional/legacy/put_spec.lua new file mode 100644 index 0000000000..0b969dee55 --- /dev/null +++ b/test/functional/legacy/put_spec.lua @@ -0,0 +1,45 @@ +local helpers = require('test.functional.helpers')(after_each) +local clear = helpers.clear +local exec_lua = helpers.exec_lua +local meths = helpers.meths +local source = helpers.source +local eq = helpers.eq + +local function sizeoflong() + if not exec_lua('return pcall(require, "ffi")') then + pending('missing LuaJIT FFI') + end + return exec_lua('return require("ffi").sizeof(require("ffi").typeof("long"))') +end + +describe('put', function() + before_each(clear) + after_each(function() eq({}, meths.get_vvar('errors')) end) + + it('very large count 64-bit', function() + if sizeoflong() < 8 then + pending('Skipped: only works with 64 bit long ints') + end + + source [[ + new + let @" = 'x' + call assert_fails('norm 44444444444444p', 'E1240:') + bwipe! + ]] + end) + + it('very large count (visual block) 64-bit', function() + if sizeoflong() < 8 then + pending('Skipped: only works with 64 bit long ints') + end + + source [[ + new + call setline(1, 'x') + exe "norm \<C-V>y" + call assert_fails('norm 44444444444444p', 'E1240:') + bwipe! + ]] + end) +end) |