# HG changeset patch # User Bram Moolenaar # Date 1645556404 -3600 # Node ID cd4187269bdf00eb14650399021be845b4be61e4 # Parent a4c131183f4c09258476239d54d3ece840d17b47 patch 8.2.4445: exit test fails on MS-Windows anyway Commit: https://github.com/vim/vim/commit/29a9e6971849b4a9eabf14fee1130d51cecfbaa7 Author: Bram Moolenaar Date: Tue Feb 22 18:48:11 2022 +0000 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. diff --git a/src/testdir/test_exit.vim b/src/testdir/test_exit.vim --- 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 --- 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 */ /**/ + 4445, +/**/ 4444, /**/ 4443,