diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-24 22:47:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-24 22:47:31 +0200 |
commit | 9d8d0b5c644ea53364d04403740b3f23e57c1497 (patch) | |
tree | 615f9b058821039f8ae1c2cba3f3837500ecc42b /src/testdir/test_execute_func.vim | |
parent | 92c461ef1b3b58c7dd4835bc881769f0f84e8ad0 (diff) | |
download | vim-git-9d8d0b5c644ea53364d04403740b3f23e57c1497.tar.gz |
patch 8.2.0633: crash when using null partial in filter()v8.2.0633
Problem: Crash when using null partial in filter().
Solution: Fix crash. Add more tests. (Yegappan Lakshmanan, closes #5976)
Diffstat (limited to 'src/testdir/test_execute_func.vim')
-rw-r--r-- | src/testdir/test_execute_func.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_execute_func.vim b/src/testdir/test_execute_func.vim index 235107c23..e02b08eb4 100644 --- a/src/testdir/test_execute_func.vim +++ b/src/testdir/test_execute_func.vim @@ -132,7 +132,7 @@ func Test_win_execute_other_tab() unlet xyz endfunc -func Test_execute_null() +func Test_execute_func_with_null() call assert_equal("", execute(test_null_string())) call assert_equal("", execute(test_null_list())) call assert_fails('call execute(test_null_dict())', 'E731:') @@ -143,3 +143,5 @@ func Test_execute_null() call assert_fails('call execute(test_null_channel())', 'E908:') endif endfunc + +" vim: shiftwidth=2 sts=2 expandtab |