mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
patch 8.0.1181: tests using Vim command fail on MS-Windows
Problem: Tests using Vim command fail on MS-Windows. Solution: Do not add quotes around the Vim command.
This commit is contained in:
parent
75f69e5a18
commit
4635e11c6b
@ -118,17 +118,17 @@ bench_re_freeze.out: bench_re_freeze.vim
|
|||||||
newtests: $(NEW_TESTS)
|
newtests: $(NEW_TESTS)
|
||||||
|
|
||||||
.vim.res:
|
.vim.res:
|
||||||
@echo "$(VIMPROG)" > vimcmd
|
@echo $(VIMPROG) > vimcmd
|
||||||
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $*.vim
|
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $*.vim
|
||||||
@del vimcmd
|
@del vimcmd
|
||||||
|
|
||||||
test_gui.res: test_gui.vim
|
test_gui.res: test_gui.vim
|
||||||
@echo "$(VIMPROG)" > vimcmd
|
@echo $(VIMPROG) > vimcmd
|
||||||
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $*.vim
|
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $*.vim
|
||||||
@del vimcmd
|
@del vimcmd
|
||||||
|
|
||||||
test_gui_init.res: test_gui_init.vim
|
test_gui_init.res: test_gui_init.vim
|
||||||
@echo "$(VIMPROG)" > vimcmd
|
@echo $(VIMPROG) > vimcmd
|
||||||
$(VIMPROG) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $*.vim
|
$(VIMPROG) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $*.vim
|
||||||
@del vimcmd
|
@del vimcmd
|
||||||
|
|
||||||
|
@ -120,17 +120,17 @@ bench_re_freeze.out: bench_re_freeze.vim
|
|||||||
newtests: $(NEW_TESTS)
|
newtests: $(NEW_TESTS)
|
||||||
|
|
||||||
.vim.res:
|
.vim.res:
|
||||||
@echo "$(VIMPROG)" > vimcmd
|
@echo $(VIMPROG) > vimcmd
|
||||||
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $*.vim
|
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $*.vim
|
||||||
@$(DEL) vimcmd
|
@$(DEL) vimcmd
|
||||||
|
|
||||||
test_gui.res: test_gui.vim
|
test_gui.res: test_gui.vim
|
||||||
@echo "$(VIMPROG)" > vimcmd
|
@echo $(VIMPROG) > vimcmd
|
||||||
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $<
|
$(VIMPROG) -u NONE $(NO_INITS) -S runtest.vim $<
|
||||||
@$(DEL) vimcmd
|
@$(DEL) vimcmd
|
||||||
|
|
||||||
test_gui_init.res: test_gui_init.vim
|
test_gui_init.res: test_gui_init.vim
|
||||||
@echo "$(VIMPROG)" > vimcmd
|
@echo $(VIMPROG) > vimcmd
|
||||||
$(VIMPROG) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $<
|
$(VIMPROG) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $<
|
||||||
@$(DEL) vimcmd
|
@$(DEL) vimcmd
|
||||||
|
|
||||||
|
@ -761,6 +761,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1181,
|
||||||
/**/
|
/**/
|
||||||
1180,
|
1180,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user