summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-08-24 17:34:19 +0200
committerChristian Brabandt <cb@256bit.org>2024-08-24 17:34:19 +0200
commitcd83173defedc174d064d27a9db9fc190647b74c (patch)
tree3124dac4062bc5c49a4e69176cf692aaa1c6c228
parenta68e34c9933a6dbd38e2ebe7d6bbb7c78302d744 (diff)
patch 9.1.0695: tests: test_crash leaves Untitled file aroundv9.1.0695
Problem: tests: test_crash leaves Untitled file around Solution: cleanup at the end of the test_crash.vim test file Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--src/testdir/test_crash.vim8
-rw-r--r--src/version.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/src/testdir/test_crash.vim b/src/testdir/test_crash.vim
index 302d3730b6..f1843c4266 100644
--- a/src/testdir/test_crash.vim
+++ b/src/testdir/test_crash.vim
@@ -209,7 +209,6 @@ func Test_crash1_3()
let args = printf(cmn_args, vim, file)
call term_sendkeys(buf, args)
call TermWait(buf, 150)
- call delete('Untitled')
let file = 'crash/nullpointer'
let cmn_args = "%s -u NONE -i NONE -n -e -s -S %s -c ':qa!'\<cr>"
@@ -231,4 +230,11 @@ 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
+ " the end of this test script
+ call delete('Untitled')
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab
diff --git a/src/version.c b/src/version.c
index f28c66f591..8252d9f308 100644
--- a/src/version.c
+++ b/src/version.c
@@ -705,6 +705,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 695,
+/**/
694,
/**/
693,