aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-12-07 10:42:53 -0500
committerJames McCoy <jamessan@jamessan.com>2016-12-07 10:44:35 -0500
commit035eb2757567a54f8898ccd430307470f1758b29 (patch)
tree65636923ca3ac804e4ba0e59c89b97e4c9d56c40
parent4f3c9ad4d7eeb48ccc33838afa6f25c0952ffb07 (diff)
downloadrneovim-035eb2757567a54f8898ccd430307470f1758b29.tar.gz
rneovim-035eb2757567a54f8898ccd430307470f1758b29.tar.bz2
rneovim-035eb2757567a54f8898ccd430307470f1758b29.zip
vim-patch:8d8aa0a
Add missing test file. https://github.com/vim/vim/commit/8d8aa0a367380f23f0af428fcb66a1a0615bf872
-rw-r--r--src/nvim/testdir/test_tagjump.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_tagjump.vim b/src/nvim/testdir/test_tagjump.vim
new file mode 100644
index 0000000000..d8a333f44c
--- /dev/null
+++ b/src/nvim/testdir/test_tagjump.vim
@@ -0,0 +1,9 @@
+" Tests for tagjump (tags and special searches)
+
+" SEGV occurs in older versions. (At least 7.4.1748 or older)
+func Test_ptag_with_notagstack()
+ set notagstack
+ call assert_fails('ptag does_not_exist_tag_name', 'E426')
+ set tagstack&vim
+endfunc
+" vim: sw=2 et