# HG changeset patch # User Bram Moolenaar # Date 1625395503 -7200 # Node ID 12fd67997953d5595f060c9bf2f4a4cece83b93a # Parent 93f37d29970faacbdff80fda7042045435f66555 patch 8.2.3096: temp files remain after running tests Commit: https://github.com/vim/vim/commit/6c72fd51a899e6f0c272b08b9784d3c7a3cede20 Author: Dominique Pelle Date: Sun Jul 4 12:30:06 2021 +0200 patch 8.2.3096: temp files remain after running tests Problem: Temp files remain after running tests. Solution: Delete the right files. (Dominique Pell?, closes https://github.com/vim/vim/issues/8509) diff --git a/src/testdir/test_debugger.vim b/src/testdir/test_debugger.vim --- a/src/testdir/test_debugger.vim +++ b/src/testdir/test_debugger.vim @@ -975,8 +975,7 @@ func Test_debug_def_and_legacy_function( call RunDbgCmd(buf, 'cont') call StopVimInTerminal(buf) - call delete('Xtest1.vim') - call delete('Xtest2.vim') + call delete('XtestDebug.vim') endfunc func Test_debug_def_function() diff --git a/src/testdir/test_lambda.vim b/src/testdir/test_lambda.vim --- a/src/testdir/test_lambda.vim +++ b/src/testdir/test_lambda.vim @@ -330,6 +330,7 @@ func Test_closure_error() let caught_932 = 1 endtry call assert_equal(1, caught_932) + call delete('Xscript') endfunc " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/testdir/test_visual.vim b/src/testdir/test_visual.vim --- a/src/testdir/test_visual.vim +++ b/src/testdir/test_visual.vim @@ -1262,7 +1262,7 @@ func Test_visual_block_with_virtualedit( " clean up call term_sendkeys(buf, "\") call StopVimInTerminal(buf) - call delete('XTest_beval') + call delete('XTest_block') endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3096, +/**/ 3095, /**/ 3094,