view src/testdir/unix.vim @ 22433:8b5e2f9580db v8.2.1765

patch 8.2.1765: Vim9: some tests use "var var" Commit: https://github.com/vim/vim/commit/9830938e77b0d36d65b0c31eadf09f7b9d394c29 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 27 21:58:45 2020 +0200 patch 8.2.1765: Vim9: some tests use "var var" Problem: Vim9: some tests use "var var". Solution: Use "var name". (closes https://github.com/vim/vim/issues/7032)
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Sep 2020 22:00:03 +0200
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