Skip to content

Commit

Permalink
patch 9.0.0938: MS-Windows: debug executable not found when running test
Browse files Browse the repository at this point in the history
Problem:    MS-Windows: debug executable not found when running test.
Solution:   Look for vimd.exe. (Christopher Plewright, closes #11602)
  • Loading branch information
zewpo authored and brammool committed Nov 24, 2022
1 parent e2da598 commit 0b228cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/testdir/Make_mvc.mak
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -695,6 +695,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
938,
/**/
937,
/**/
Expand Down

0 comments on commit 0b228cd

Please sign in to comment.