changeset 31209:429279c35b1e v9.0.0938

patch 9.0.0938: MS-Windows: debug executable not found when running test Commit: https://github.com/vim/vim/commit/0b228cddc723af0c7ceb1cd73685b0b742f16713 Author: Christopher Plewright <chris@createng.com> Date: Thu Nov 24 12:19:50 2022 +0000 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 https://github.com/vim/vim/issues/11602)
author Bram Moolenaar <Bram@vim.org>
date Thu, 24 Nov 2022 13:30:03 +0100
parents 4b20ffeb1160
children 50ad80360e99
files src/testdir/Make_mvc.mak src/version.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
 
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    938,
+/**/
     937,
 /**/
     936,