aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-02-07 06:48:10 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-02-07 06:48:10 +0800
commitbfc11e9c64f7da952fb3f6c0ee0f62d80ce4394a (patch)
tree2fcfe500ae59be821da44c7d5a9aa1ab334f1e78 /src/nvim/testdir
parent53e4434c722d94f9c49dee2fd787d05d36a46bf3 (diff)
downloadrneovim-bfc11e9c64f7da952fb3f6c0ee0f62d80ce4394a.tar.gz
rneovim-bfc11e9c64f7da952fb3f6c0ee0f62d80ce4394a.tar.bz2
rneovim-bfc11e9c64f7da952fb3f6c0ee0f62d80ce4394a.zip
vim-patch:8.2.3824: no ASAN support for MSVC
Problem: No ASAN support for MSVC. Solution: Add ASAN support and fix a coupld of uncovered problems. (Yegappan Lakshmanan, closes vim/vim#9357) https://github.com/vim/vim/commit/6df0f2759d12ec0bc999b2963ecea4387a2bc516
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_fnamemodify.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_fnamemodify.vim b/src/nvim/testdir/test_fnamemodify.vim
index a8d513eede..73ede415ae 100644
--- a/src/nvim/testdir/test_fnamemodify.vim
+++ b/src/nvim/testdir/test_fnamemodify.vim
@@ -90,6 +90,7 @@ func Test_fnamemodify_er()
call assert_equal('b.c', fnamemodify('a.b.c.d.e', ':r:r:e:e:e'))
call assert_equal('b.c', fnamemodify('a.b.c.d.e', ':r:r:e:e:e:e'))
+ call assert_equal('', fnamemodify('', ':p:t'))
call assert_equal('', fnamemodify(v:_null_string, v:_null_string))
endfunc