view src/testdir/test_spell.vim @ 11394:a2124e9bbb6a v8.0.0582

patch 8.0.0582: illegal memory access with z= command commit https://github.com/vim/vim/commit/5b276aa80e112ae1993bd43e28f599f257827c54 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 22 23:49:52 2017 +0200 patch 8.0.0582: illegal memory access with z= command Problem: Illegal memory access with z= command. (Dominique Pelle) Solution: Avoid case folded text to be longer than the original text. Use MB_PTR2LEN() instead of MB_BYTE2LEN().
author Christian Brabandt <cb@256bit.org>
date Sun, 23 Apr 2017 00:00:03 +0200
parents 2297aae8e127
children b3815e491811
line wrap: on
line source

" Test spell checking
" TODO: move test58 tests here

if !has('spell')
  finish
endif

func Test_wrap_search()
  new
  call setline(1, ['The', '', 'A plong line with two zpelling mistakes', '', 'End'])
  set spell wrapscan
  normal ]s
  call assert_equal('plong', expand('<cword>'))
  normal ]s
  call assert_equal('zpelling', expand('<cword>'))
  normal ]s
  call assert_equal('plong', expand('<cword>'))
  bwipe!
  set nospell
endfunc

func Test_z_equal_on_invalid_utf8_word()
  split
  set spell
  call setline(1, "\xff")
  norm z=
  set nospell
  bwipe!
endfunc