mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 14:11:15 -07:00
vim-patch:7.4.231
Problem: An error in ":options" is not caught by the tests. Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that it uses the current runtime files instead of the installed ones. https://code.google.com/p/vim/source/detail?r=0a295a3c9e473512ad3b006a0fb752ad43d19094
This commit is contained in:
parent
a40a7cf24f
commit
41634af0e5
@ -5,6 +5,7 @@
|
||||
export SHELL := sh
|
||||
|
||||
VIMPROG := ../../../build/bin/nvim
|
||||
SCRIPTSOURCE := ../../../runtime
|
||||
|
||||
SCRIPTS := test_autoformat_join.out \
|
||||
test_eval.out \
|
||||
@ -29,7 +30,8 @@ SCRIPTS := test_autoformat_join.out \
|
||||
test91.out test92.out test93.out test94.out test95.out \
|
||||
test96.out test97.out test98.out test99.out test100.out \
|
||||
test101.out test102.out test103.out test104.out test105.out \
|
||||
test106.out test107.out
|
||||
test106.out test107.out \
|
||||
test_options.out
|
||||
|
||||
SCRIPTS_GUI := test16.out
|
||||
|
||||
@ -86,7 +88,7 @@ $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) test1.out
|
||||
|
||||
RM_ON_RUN := test.out X* viminfo
|
||||
RM_ON_START := tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok
|
||||
RUN_VIM := $(TOOL) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in
|
||||
RUN_VIM := export VIMRUNTIME=$(SCRIPTSOURCE); $(TOOL) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in
|
||||
|
||||
clean:
|
||||
-rm -rf *.out \
|
||||
|
17
src/nvim/testdir/test_options.in
Normal file
17
src/nvim/testdir/test_options.in
Normal file
@ -0,0 +1,17 @@
|
||||
Test for ":options".
|
||||
|
||||
STARTTEST
|
||||
:so small.vim
|
||||
:let caught = 'ok'
|
||||
:try
|
||||
:options
|
||||
:catch
|
||||
:let caught = v:throwpoint . "\n" . v:exception
|
||||
:endtry
|
||||
:buf 1
|
||||
:$put =caught
|
||||
:/^result/,$w! test.out
|
||||
:qa!
|
||||
ENDTEST
|
||||
|
||||
result
|
2
src/nvim/testdir/test_options.ok
Normal file
2
src/nvim/testdir/test_options.ok
Normal file
@ -0,0 +1,2 @@
|
||||
result
|
||||
ok
|
@ -364,7 +364,7 @@ static int included_patches[] = {
|
||||
234,
|
||||
233,
|
||||
232,
|
||||
//231,
|
||||
231,
|
||||
230,
|
||||
229,
|
||||
//228 NA
|
||||
|
Loading…
Reference in New Issue
Block a user