diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-05 19:33:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 19:33:06 +0800 |
commit | d9f0d2da4d29847542072099f103e7248fcacaab (patch) | |
tree | 8f659e7b0380b57885b04782e01fb04a31918ef8 /test/functional/ex_cmds/excmd_spec.lua | |
parent | 648f777931d49b8013146f69d7e2776f69c52900 (diff) | |
parent | 3a1e17e3a1767b4ff8a082150f7f9d6bda50cc8f (diff) | |
download | rneovim-d9f0d2da4d29847542072099f103e7248fcacaab.tar.gz rneovim-d9f0d2da4d29847542072099f103e7248fcacaab.tar.bz2 rneovim-d9f0d2da4d29847542072099f103e7248fcacaab.zip |
Merge pull request #23482 from zeertzjq/do-cmdline-verbose
fix(excmd): append original command to error message
Diffstat (limited to 'test/functional/ex_cmds/excmd_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/excmd_spec.lua | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/test/functional/ex_cmds/excmd_spec.lua b/test/functional/ex_cmds/excmd_spec.lua index 14cc2b8387..a92329ede5 100644 --- a/test/functional/ex_cmds/excmd_spec.lua +++ b/test/functional/ex_cmds/excmd_spec.lua @@ -11,20 +11,24 @@ describe('Ex cmds', function() clear() end) + local function check_excmd_err(cmd, err) + eq(err .. ': ' .. cmd, pcall_err(command, cmd)) + end + it('handle integer overflow from user-input #5555', function() command(':9999999999999999999999999999999999999999') command(':later 9999999999999999999999999999999999999999') command(':echo expand("#<9999999999999999999999999999999999999999")') command(':lockvar 9999999999999999999999999999999999999999') command(':winsize 9999999999999999999999999999999999999999 9999999999999999999999999999999999999999') - eq('Vim(tabnext):E475: Invalid argument: 9999999999999999999999999999999999999999', - pcall_err(command, ':tabnext 9999999999999999999999999999999999999999')) - eq('Vim(Next):E939: Positive count required', - pcall_err(command, ':N 9999999999999999999999999999999999999999')) + check_excmd_err(':tabnext 9999999999999999999999999999999999999999', + 'Vim(tabnext):E475: Invalid argument: 9999999999999999999999999999999999999999') + check_excmd_err(':N 9999999999999999999999999999999999999999', + 'Vim(Next):E939: Positive count required') + check_excmd_err(':bdelete 9999999999999999999999999999999999999999', + 'Vim(bdelete):E939: Positive count required') eq('Vim(menu):E329: No menu "9999999999999999999999999999999999999999"', pcall_err(command, ':menu 9999999999999999999999999999999999999999')) - eq('Vim(bdelete):E939: Positive count required', - pcall_err(command, ':bdelete 9999999999999999999999999999999999999999')) assert_alive() end) |