changeset 8934:42c8599421e5

commit https://github.com/vim/vim/commit/8d8aa0a367380f23f0af428fcb66a1a0615bf872 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 18 20:21:12 2016 +0200 Add missing test file.
author Christian Brabandt <cb@256bit.org>
date Mon, 18 Apr 2016 20:30:06 +0200
parents 906f1e3bd234
children 219d80fee92f
files src/testdir/test_tagjump.vim
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/src/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