From 0b228cddc723af0c7ceb1cd73685b0b742f16713 Mon Sep 17 00:00:00 2001 From: Christopher Plewright Date: Thu, 24 Nov 2022 12:19:50 +0000 Subject: [PATCH] patch 9.0.0938: MS-Windows: debug executable not found when running test Problem: MS-Windows: debug executable not found when running test. Solution: Look for vimd.exe. (Christopher Plewright, closes #11602) --- src/testdir/Make_mvc.mak | 6 ++++++ src/version.c | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/testdir/Make_mvc.mak b/src/testdir/Make_mvc.mak index cbb21712ae..318cd4a16c 100644 --- a/src/testdir/Make_mvc.mak +++ b/src/testdir/Make_mvc.mak @@ -3,7 +3,13 @@ # # Requires a set of Unix tools: echo, diff, etc. +# Testing may be done with a debug build +!IF EXIST(..\\vimd.exe) && !EXIST(..\\vim.exe) +VIMPROG = ..\\vimd +!ELSE VIMPROG = ..\\vim +!ENDIF + default: nongui diff --git a/src/version.c b/src/version.c index c4d35c3b13..ca0ea28f7c 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 938, /**/ 937, /**/