# HG changeset patch # User Christian Brabandt # Date 1491145204 -7200 # Node ID 3bcdfad55b19d541be4c1d74b904049537ae13c7 # Parent edfac45a053df7852a09922b55dfca9394efec9d patch 8.0.0538: no test for falling back to default term value commit https://github.com/vim/vim/commit/85045a73db258a054a17fd52a67eb5cd02a788dc Author: Bram Moolenaar Date: Sun Apr 2 16:54:09 2017 +0200 patch 8.0.0538: no test for falling back to default term value Problem: No test for falling back to default term value. Solution: Add a test. diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -208,3 +208,16 @@ func Test_silent_ex_mode() let out = system(GetVimCommand() . '-u NONE -es -c''set verbose=1|h|exe "%norm\\"'' -c cq') call assert_notmatch('E315:', out) endfunc + +func Test_default_term() + if !has('unix') || has('gui_running') + " can't get output of Vim. + return + endif + + let save_term = $TERM + let $TERM = 'unknown' + let out = system(GetVimCommand() . ' -c''set term'' -c cq') + call assert_match("defaulting to 'ansi'", out) + let $TERM = save_term +endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 538, +/**/ 537, /**/ 536,