view src/testdir/test_recover.vim @ 10955:a555c11b59a9

Added tag v8.0.0366 for changeset 8ff62b4cffaedc9575a7ba3901c9228d6c8ee24e
author Christian Brabandt <cb@256bit.org>
date Sat, 25 Feb 2017 15:45:04 +0100
parents cc3f6ad092c2
children 0cafb01af1b6
line wrap: on
line source

" Test :recover

func Test_recover_root_dir()
  " This used to access invalid memory.
  split Xtest
  set dir=/
  call assert_fails('recover', 'E305:')
  close!

  if has('win32')
    " can write in / directory on MS-Windows
    set dir=/notexist/
  endif
  call assert_fails('split Xtest', 'E303:')
  set dir&
endfunc

" TODO: move recover tests from test78.in to here.