# HG changeset patch # User Christian Brabandt # Date 1489670104 -3600 # Node ID 9f9409588102fc78bd06d2efc629253103d351a0 # Parent cd6b18b18291a4ebee8379f541129f2eeeb75dea patch 8.0.0462: failure of an MS-Windows test may go unnoticed commit https://github.com/vim/vim/commit/b27523ff7ab3083c20c0f33415d890f978726c4f Author: Bram Moolenaar Date: Thu Mar 16 14:04:51 2017 +0100 patch 8.0.0462: failure of an MS-Windows test may go unnoticed Problem: If an MS-Windows tests succeeds at first and then fails in a way it does not produce a test.out file it looks like the test succeeded. Solution: Delete the previous output file. diff --git a/src/testdir/Make_dos.mak b/src/testdir/Make_dos.mak --- a/src/testdir/Make_dos.mak +++ b/src/testdir/Make_dos.mak @@ -44,6 +44,7 @@ win32: nolog $(SCRIPTS_FIRST) $(SCRIPTS) # This moves test99.in to test99.in.bak temporarily. $(TEST_OUTFILES): $(DOSTMP)\$(*B).in -@if exist test.out DEL test.out + -@if exist $(DOSTMP)\$(*B).out DEL $(DOSTMP)\$(*B).out move $(*B).in $(*B).in.bak > nul copy $(DOSTMP)\$(*B).in $(*B).in > nul copy $(*B).ok test.ok > nul diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 462, +/**/ 461, /**/ 460,