changeset 20388:83f390b19223 v8.2.0749

patch 8.2.0749: TERM signal test fails on FreeBSD Commit: https://github.com/vim/vim/commit/55ba4b844f1b0e44f0f2e1bd14d26e7ad2df9ffc Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 13 16:53:49 2020 +0200 patch 8.2.0749: TERM signal test fails on FreeBSD Problem: TERM signal test fails on FreeBSD. Solution: Do not check the messages, the may appear anywhere. (Dominique Pelle, closes #6075)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 May 2020 17:00:04 +0200
parents b67dde0cb886
children 953f2c775c07
files src/testdir/test_signals.vim src/version.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_signals.vim
+++ b/src/testdir/test_signals.vim
@@ -136,8 +136,6 @@ func Test_deadly_signal_TERM()
 
   call assert_false(filereadable('Xsig_TERM'))
   exe 'silent !kill -s TERM '  .. pid_vim
-  call WaitForAssert({-> assert_equal('Vim: Caught deadly signal TERM', term_getline(buf, 1))})
-  call WaitForAssert({-> assert_match('Vim: preserving files\.\.\.$', term_getline(buf, 2))})
   call WaitForAssert({-> assert_true(filereadable('.Xsig_TERM.swp'))})
 
   " Don't call StopVimInTerminal() as it expects job to be still running.
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    749,
+/**/
     748,
 /**/
     747,