mirror of
https://github.com/vim/vim.git
synced 2025-10-08 06:04:08 -04:00
patch 8.0.0145: running tests on MS-Windows is noisy
Problem: Running tests on MS-Windows is a little bit noisy. Solution: Redirect some output to "nul". (Ken Takata)
This commit is contained in:
@@ -44,12 +44,12 @@ $(DOSTMP_INFILES): $(*B).in
|
|||||||
# This moves test99.in to test99.in.bak temporarily.
|
# This moves test99.in to test99.in.bak temporarily.
|
||||||
$(TEST_OUTFILES): $(DOSTMP)\$(*B).in
|
$(TEST_OUTFILES): $(DOSTMP)\$(*B).in
|
||||||
-@if exist test.out DEL test.out
|
-@if exist test.out DEL test.out
|
||||||
move $(*B).in $(*B).in.bak
|
move $(*B).in $(*B).in.bak > nul
|
||||||
copy $(DOSTMP)\$(*B).in $(*B).in
|
copy $(DOSTMP)\$(*B).in $(*B).in > nul
|
||||||
copy $(*B).ok test.ok
|
copy $(*B).ok test.ok > nul
|
||||||
$(VIMPROG) -u dos.vim $(NO_PLUGIN) -s dotest.in $(*B).in
|
$(VIMPROG) -u dos.vim $(NO_PLUGIN) -s dotest.in $(*B).in
|
||||||
-@if exist test.out MOVE /y test.out $(DOSTMP)\$(*B).out
|
-@if exist test.out MOVE /y test.out $(DOSTMP)\$(*B).out > nul
|
||||||
-@if exist $(*B).in.bak move /y $(*B).in.bak $(*B).in
|
-@if exist $(*B).in.bak move /y $(*B).in.bak $(*B).in > nul
|
||||||
-@if exist test.ok del test.ok
|
-@if exist test.ok del test.ok
|
||||||
-@if exist Xdir1 rd /s /q Xdir1
|
-@if exist Xdir1 rd /s /q Xdir1
|
||||||
-@if exist Xfind rd /s /q Xfind
|
-@if exist Xfind rd /s /q Xfind
|
||||||
@@ -58,10 +58,10 @@ $(TEST_OUTFILES): $(DOSTMP)\$(*B).in
|
|||||||
$(VIMPROG) -u dos.vim $(NO_PLUGIN) "+set ff=unix|f test.out|wq" \
|
$(VIMPROG) -u dos.vim $(NO_PLUGIN) "+set ff=unix|f test.out|wq" \
|
||||||
$(DOSTMP)\$(*B).out
|
$(DOSTMP)\$(*B).out
|
||||||
@diff test.out $*.ok & if errorlevel 1 \
|
@diff test.out $*.ok & if errorlevel 1 \
|
||||||
( move /y test.out $*.failed \
|
( move /y test.out $*.failed > nul \
|
||||||
& del $(DOSTMP)\$(*B).out \
|
& del $(DOSTMP)\$(*B).out \
|
||||||
& echo $* FAILED >> test.log ) \
|
& echo $* FAILED >> test.log ) \
|
||||||
else ( move /y test.out $*.out )
|
else ( move /y test.out $*.out > nul )
|
||||||
|
|
||||||
# Must run test1 first to create small.vim.
|
# Must run test1 first to create small.vim.
|
||||||
# This rule must come after the one that copies the input files to dostmp to
|
# This rule must come after the one that copies the input files to dostmp to
|
||||||
|
@@ -764,6 +764,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 */
|
||||||
|
/**/
|
||||||
|
145,
|
||||||
/**/
|
/**/
|
||||||
144,
|
144,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user