From: Bram Moolenaar Date: Sun, 6 Oct 2019 10:02:15 +0000 (+0200) Subject: patch 8.1.2118: termcodes test fails when $TERM is "dumb" X-Git-Tag: v8.1.2118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb66328bd78c3001d71138306325718cb1c94712;p=thirdparty%2Fvim.git patch 8.1.2118: termcodes test fails when $TERM is "dumb" Problem: Termcodes test fails when $TERM is "dumb". Solution: Skip the test. (James McCoy, closes #5019) --- diff --git a/src/testdir/test_termcodes.vim b/src/testdir/test_termcodes.vim index 96bbdbb44f..6174723173 100644 --- a/src/testdir/test_termcodes.vim +++ b/src/testdir/test_termcodes.vim @@ -798,7 +798,11 @@ func Test_xx_term_style_response() endfunc func Test_get_termcode() - let k1 = &t_k1 + try + let k1 = &t_k1 + catch /E113/ + throw 'Skipped: Unable to query termcodes' + endtry set t_k1= set t_k1& call assert_equal(k1, &t_k1) diff --git a/src/version.c b/src/version.c index fa4930b7cc..0fa8440e35 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2118, /**/ 2117, /**/