view src/testdir/unix.vim @ 31764:6969fac11aaa v9.0.1214

patch 9.0.1214: file left behind after running tests Commit: https://github.com/vim/vim/commit/541c87c808df91b55e51fedc4987152a3edfe80d Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Tue Jan 17 21:20:44 2023 +0000 patch 9.0.1214: file left behind after running tests Problem: File left behind after running tests. Solution: Delete the file. (Dominique Pell?, closes https://github.com/vim/vim/issues/11839)
author Bram Moolenaar <Bram@vim.org>
date Tue, 17 Jan 2023 22:30:04 +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