# HG changeset patch # User Bram Moolenaar # Date 1613848503 -3600 # Node ID c1ba42fa843f6bb7fb22683c21790da06ece93fe # Parent 686f3c5377a35850bf9649d17019827016c2b8e7 patch 8.2.2535: MS-Windows: cannot run all vim9 tests Commit: https://github.com/vim/vim/commit/723ef5db980b2e69ef8bdc0dd448cb645491c464 Author: Bram Moolenaar Date: Sat Feb 20 20:13:42 2021 +0100 patch 8.2.2535: MS-Windows: cannot run all vim9 tests Problem: MS-Windows: cannot run all vim9 tests. Solution: Make test_vim9 target work. diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1489,6 +1489,16 @@ testclean: $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) report cd .. +# Run Vim9 tests. +# These do not depend on the executable, compile it when needed. +test_vim9: + cd testdir + -del test_vim9_*.res + $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) nolog + $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) $(TEST_VIM9_RES) + $(MAKE) /NOLOGO -f Make_dos.mak VIMPROG=..\$(VIMTESTTARGET) report + cd .. + ########################################################################### # Create a default rule for transforming .c files to .obj files in $(OUTDIR) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2535, +/**/ 2534, /**/ 2533,