view src/testdir/unix.vim @ 23990:06da0685077b v8.2.2537

patch 8.2.2537: Vim9: crash when map() fails Commit: https://github.com/vim/vim/commit/027c4ab4d2e3ff031b98e0fb648f5acbea180293 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 21 16:20:18 2021 +0100 patch 8.2.2537: Vim9: crash when map() fails Problem: Vim9: crash when map() fails. Solution: Clear typval before using it. (closes https://github.com/vim/vim/issues/7884)
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Feb 2021 16:30: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