view src/testdir/test_findfile.vim @ 14501:77968a364ec4 v8.1.0264

patch 8.1.0264: backup tests fail when CWD is in /tmp commit https://github.com/vim/vim/commit/efe03738f69b1f63ea30226765db949539ee15f0 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 9 22:26:38 2018 +0200 patch 8.1.0264: backup tests fail when CWD is in /tmp Problem: Backup tests fail when CWD is in /tmp. Solution: Make 'backupskip' empty. (Christian Brabandt, closes https://github.com/vim/vim/issues/3301)
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Aug 2018 22:30:07 +0200
parents a479b7064550
children 977a05589b65
line wrap: on
line source

" Test for findfile()
"
func Test_findfile()
  new
  let cwd=getcwd()
  cd ..

  " Tests may be run from a shadow directory, so an extra cd needs to be done to
  " get above src/
  if fnamemodify(getcwd(), ':t') != 'src'
    cd ../.. 
  else 
    cd .. 
  endif
  set ssl

  call assert_equal('src/testdir/test_findfile.vim', findfile('test_findfile.vim','src/test*'))
  exe "cd" cwd
  cd ..
  call assert_equal('testdir/test_findfile.vim', findfile('test_findfile.vim','test*'))
  call assert_equal('testdir/test_findfile.vim', findfile('test_findfile.vim','testdir'))

  exe "cd" cwd
  q!
endfunc