# HG changeset patch # User Christian Brabandt # Date 1489700704 -3600 # Node ID 7fc6afa998bec3afdc8e498940bcaab3267828e5 # Parent 3c8cb5ff24344d406e0e0970f0c274b1e1ed5550 patch 8.0.0472: when a test fails another test may also fail commit https://github.com/vim/vim/commit/c537947100d4a73754ad4b4c9228c6c439655e5d Author: Bram Moolenaar Date: Thu Mar 16 22:38:00 2017 +0100 patch 8.0.0472: when a test fails another test may also fail Problem: When a test fails and test.log is created, Test_edit_CTRL_I matches it instead of test1.in. Solution: Match with runtest.vim instead. diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -506,8 +506,8 @@ func! Test_edit_CTRL_I() let path=expand("%:p:h") new call setline(1, [path."/", '']) - call feedkeys("Ate\\\\\", 'tnix') - call assert_match('test1\.in', getline(1)) + call feedkeys("Arunt\\\\\", 'tnix') + call assert_match('runtest\.vim', getline(1)) %d call writefile(['one', 'two', 'three'], 'Xinclude.txt') let include='#include Xinclude.txt' 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 */ /**/ + 472, +/**/ 471, /**/ 470,