From d28e0b3652067788fcc9c99058b0b6eee7beebee Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 22 Feb 2020 23:08:52 +0100 Subject: [PATCH] patch 8.2.0303: TermChanged test fails in the GUI Problem: TermChanged test fails in the GUI. Solution: Skip the test when running the GUI. --- src/testdir/test_autocmd.vim | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim index 70e96087c..2ff231d36 100644 --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -2387,6 +2387,8 @@ func LogACmd() endfunc func Test_TermChanged() + CheckNotGui + enew! tabnew call setline(1, ['a', 'b', 'c', 'd']) diff --git a/src/version.c b/src/version.c index 96ef2c103..97669c095 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 303, /**/ 302, /**/ -- 2.50.1