From 29a9e6971849b4a9eabf14fee1130d51cecfbaa7 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 22 Feb 2022 18:48:11 +0000 Subject: [PATCH] patch 8.2.4445: exit test fails on MS-Windows anyway Problem: Exit test fails on MS-Windows anyway. Solution: Skip the test on MS-Windows. --- src/testdir/test_exit.vim | 1 + src/version.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/testdir/test_exit.vim b/src/testdir/test_exit.vim index a5cabf813..7e50e78ba 100644 --- a/src/testdir/test_exit.vim +++ b/src/testdir/test_exit.vim @@ -112,6 +112,7 @@ endfunc func Test_exit_error_reading_input() CheckNotGui + CheckNotMSWindows " The early exit causes memory not to be freed somehow CheckNotAsan diff --git a/src/version.c b/src/version.c index 646f1edaa..cb6e8e3e8 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4445, /**/ 4444, /**/ -- 2.50.1