view src/testdir/unix.vim @ 18935:ed246d4c46ba v8.2.0028

patch 8.2.0028: searchpairpos() is not tested Commit: https://github.com/vim/vim/commit/3ba35409a65b457d29a885a27b46b02a9aec6bcc Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 21 22:00:50 2019 +0100 patch 8.2.0028: searchpairpos() is not tested Problem: Searchpairpos() is not tested. Solution: Add tests. Also improve searchpair() testing. (Dominique Pelle, closes #5388)
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 Dec 2019 22:15:03 +0100
parents bfd636b8e259
children dbec60b8c253
line wrap: on
line source

" Settings for test script execution
" Always use "sh", don't use the value of "$SHELL".
set shell=sh

" Only when the +eval feature is present. 
if 1
  " While some tests overwrite $HOME to prevent them from polluting user files,
  " we need to remember the original value so that we can tell external systems
  " where to ask about their own user settings.
  let g:tester_HOME = $HOME
endif

source setup.vim