summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Plewright <chris@createng.com>2022-11-24 12:19:50 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-24 12:19:50 +0000
commit0b228cddc723af0c7ceb1cd73685b0b742f16713 (patch)
tree239d7994d28032b61a2f522964226f36aa9e5d10
parente2da59851a4a24873d0db659f6adb1918bedb216 (diff)
patch 9.0.0938: MS-Windows: debug executable not found when running testv9.0.0938
Problem: MS-Windows: debug executable not found when running test. Solution: Look for vimd.exe. (Christopher Plewright, closes #11602)
-rw-r--r--src/testdir/Make_mvc.mak6
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 0 deletions
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
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 938,
+/**/
937,
/**/
936,