view src/testdir/setup.vim @ 22778:3ec5f653f64d v8.2.1937

patch 8.2.1937: Vim9: test for confirm modifier fails in some situations Commit: https://github.com/vim/vim/commit/645cd3eb1fae784579fab11feea634bfaff9af49 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 1 20:04:57 2020 +0100 patch 8.2.1937: Vim9: test for confirm modifier fails in some situations Problem: Vim9: test for confirm modifier fails in some situations. Solution: Add a short wait. Handle failure better.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Nov 2020 20:15:03 +0100
parents 16647bd6372c
children ee50174810ac
line wrap: on
line source

" Common preparations for running tests.

" Only load this once.
if 1
  if exists('s:did_load')
    finish
  endif
  let s:did_load = 1
endif

" Make sure 'runtimepath' and 'packpath' does not include $HOME.
set rtp=$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after
if has('packages')
  let &packpath = &rtp
endif

" Only when the +eval feature is present. 
if 1
  " Make sure the .Xauthority file can be found after changing $HOME.
  if $XAUTHORITY == ''
    let $XAUTHORITY = $HOME . '/.Xauthority'
  endif

  " Avoid storing shell history.
  let $HISTFILE = ""

  " Make sure $HOME does not get read or written.
  " It must exist, gnome tries to create $HOME/.gnome2
  let $HOME = getcwd() . '/XfakeHOME'
  if !isdirectory($HOME)
    call mkdir($HOME)
  endif
endif