patch 9.1.0698: tests: "Untitled" file not removed when running Test_crash1_3 alone
Commit: https://github.com/vim/vim/commit/d56c451e1c05310562c5282352d7bb287c16323c Author: zeertzjq <zeert...@outlook.com> Date: Mon Aug 26 18:45:37 2024 +0200 patch 9.1.0698: tests: "Untitled" file not removed when running Test_crash1_3 alone Problem: tests: "Untitled" file not removed when running Test_crash1_3 alone with TEST_FILTER (after v9.1.0695) Solution: Use a TearDown function instead of another test. (zeertzjq) closes: #15578 closes: #15577 Signed-off-by: zeertzjq <zeert...@outlook.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/src/testdir/test_crash.vim b/src/testdir/test_crash.vim index 5ec103f6d..b3348761c 100644 --- a/src/testdir/test_crash.vim +++ b/src/testdir/test_crash.vim @@ -237,9 +237,9 @@ func Test_crash2() exe buf .. "bw!" endfunc -func Test_zz_cleanup() - " That file is created at Test_crash1_2() by dialog_changed_uaf - " but cleanup in that Test, doesn't remove it. Let's try again at +func TearDown() + " That file is created at Test_crash1_3() by dialog_changed_uaf + " but cleaning up in that test doesn't remove it. Let's try again at " the end of this test script call delete('Untitled') endfunc diff --git a/src/version.c b/src/version.c index 7f88c8c68..314a3207a 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 698, /**/ 697, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/E1sid4Z-009eNO-H9%40256bit.org.