File tree Expand file tree Collapse file tree 7 files changed +25
-4
lines changed
Expand file tree Collapse file tree 7 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 22set shell = csh
33map! /tmp t:
44cmap !rm !Delete all
5+
6+ source setup.vim
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ set shell=c:\COMMAND.COM shellquote= shellxquote= shellcmdflag=/c shellredir=>
55if executable (" cmd.exe" )
66 set shell = cmd.exe
77endif
8+
9+ source setup.vim
Original file line number Diff line number Diff line change @@ -42,6 +42,9 @@ if &lines < 24 || &columns < 80
4242 cquit
4343endif
4444
45+ " Common with all tests on all systems.
46+ source setup.vim
47+
4548" For consistency run all tests with 'nocompatible' set.
4649" This also enables use of line continuation.
4750set nocp viminfo += nviminfo
@@ -55,9 +58,6 @@ lang mess C
5558" Always use forward slashes.
5659set shellslash
5760
58- " Make sure $HOME does not get read or written.
59- let $HOME = ' /does/not/exist'
60-
6161let s: srcdir = expand (' %:p:h:h' )
6262
6363" Prepare for calling test_garbagecollect_now().
Original file line number Diff line number Diff line change 1+ " Common preparations for running tests.
2+
3+ " Make sure 'runtimepath' does not include $HOME.
4+ set rtp = $VIM /vimfiles,$VIMRUNTIME,$VIM/ vimfiles/after
5+
6+ " Only when the +eval feature is present.
7+ if 1
8+ " Make sure $HOME does not get read or written.
9+ let $HOME = ' /does/not/exist'
10+ endif
11+
Original file line number Diff line number Diff line change 11" Settings for test script execution
22" Always use "sh", don't use the value of "$SHELL".
33set shell = sh
4+
5+ source setup.vim
Original file line number Diff line number Diff line change 11" Settings for test script execution under OpenVMS
22
3- " Do not make any swap files
3+ " Do not use any swap files
44set noswapfile
5+
6+ source setup.vim
Original file line number Diff line number Diff line change @@ -758,6 +758,8 @@ static char *(features[]) =
758758
759759static int included_patches [] =
760760{ /* Add new patch number below this line */
761+ /**/
762+ 2031 ,
761763/**/
762764 2030 ,
763765/**/
You can’t perform that action at this time.
0 commit comments