From: Muraoka Taro Date: Sat, 10 Jan 2026 18:07:09 +0000 (+0000) Subject: patch 9.1.2076: tests: MinGW test fails midway and stops X-Git-Tag: v9.1.2076^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ddbd31c18f2f35c0fdc8ddae8c01037428d65bf;p=thirdparty%2Fvim.git patch 9.1.2076: tests: MinGW test fails midway and stops Problem: tests: When running the MinGW test, an error occurs after generating opt_test.vim. Solution: Rewrite the error detection in cmd.exe syntax (Muraoka Taro). The recipe section of src/testdir/Make_ming.mak must be written in cmd.exe syntax. This is because "SHELL = cmd.exe" is specified at the beginning. However, the error detection in the opt_test.vim recipe is written in UNXI syntax, which caused the error. closes: #19146 Signed-off-by: Muraoka Taro Signed-off-by: Christian Brabandt --- diff --git a/src/testdir/Make_ming.mak b/src/testdir/Make_ming.mak index 956ef7e439..8d54500dec 100644 --- a/src/testdir/Make_ming.mak +++ b/src/testdir/Make_ming.mak @@ -160,10 +160,7 @@ test_gui_init.res: test_gui_init.vim opt_test.vim: util/gen_opt_test.vim ../optiondefs.h ../../runtime/doc/options.txt $(VIMPROG) -e -s -u NONE $(COMMON_ARGS) --nofork -S $^ - @if test -f gen_opt_test.log; then \ - cat gen_opt_test.log; \ - exit 1; \ - fi + @if exist gen_opt_test.log ( type gen_opt_test.log & exit /b 1 ) test_bench_regexp.res: test_bench_regexp.vim -$(DEL) benchmark.out diff --git a/src/version.c b/src/version.c index ef7ccf959d..0b25427a03 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2076, /**/ 2075, /**/