# HG changeset patch # User Bram Moolenaar # Date 1641586504 -3600 # Node ID 499b9122b9ff909a40424b76f092da44c5006c65 # Parent 917a9026141f9ded9ee26f1c82a44f29244ecb53 patch 8.2.4033: running filetype tests leaves directory behind Commit: https://github.com/vim/vim/commit/a4c96252b12c9ebc0ba563694c064e500d707b06 Author: zeertzjq Date: Fri Jan 7 20:07:46 2022 +0000 patch 8.2.4033: running filetype tests leaves directory behind Problem: Running filetype tests leaves directory behind. Solution: Delete the top directory. (closes https://github.com/vim/vim/issues/9483) diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -1067,7 +1067,7 @@ func Test_dep3patch_file() call assert_notequal('dep3patch', &filetype) bwipe! - call delete('debian/patches', 'rf') + call delete('debian', 'rf') endfunc func Test_patch_file() 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 */ /**/ + 4033, +/**/ 4032, /**/ 4031,