From 2586459118ca589c8393121a5d3696802ed1a606 Mon Sep 17 00:00:00 2001 From: watiko Date: Sun, 13 Dec 2015 22:40:23 +0900 Subject: vim-patch:7.4.953 Problem: When a test script navigates to another buffer the .res file is created with the wrong name. Solution: Use the "testname" for the .res file. (Damien) https://github.com/vim/vim/commit/de0ad40cb3c1bc691a754698ed16a5b6cdb4086b --- src/nvim/testdir/runtest.vim | 2 +- src/nvim/version.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index 8589bf6935..0dc142eb97 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -76,7 +76,7 @@ endfor if fail == 0 " Success, create the .res file so that make knows it's done. - split %:r.res + exe 'split ' . fnamemodify(testname, ':r') . '.res' write endif diff --git a/src/nvim/version.c b/src/nvim/version.c index 3f87517f47..4ba901cc0f 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -116,7 +116,7 @@ static int included_patches[] = { // 956, // 955, // 954 NA - // 953, + 953, // 952, // 951, 950, -- cgit