diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-30 13:31:49 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-30 13:31:49 +0200 |
commit | 97a80e440ace3d433af3713271de8d53bbc36ab3 (patch) | |
tree | 40078112ee12bad17e6f03bcf756f3d1e861ed78 | |
parent | b47a2597e64b4c4f728433ae005cf6ff1d0dd5c1 (diff) | |
download | vim-git-8.0.1015.tar.gz |
patch 8.0.1015: missing update to terminal testv8.0.1015
Problem: Missing update to terminal test.
Solution: Add the changes to the test.
-rw-r--r-- | src/testdir/test_terminal.vim | 7 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index ae6d195ab..b6c926f40 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -84,6 +84,7 @@ endfunc func Test_terminal_hide_buffer() let buf = Run_shell_in_terminal({}) + setlocal bufhidden=hide quit for nr in range(1, winnr('$')) call assert_notequal(winbufnr(nr), buf) @@ -356,13 +357,13 @@ func Test_finish_open_close() call assert_equal(1, winnr('$')) exe 'terminal ++open ' . cmd - close + close! call WaitFor("winnr('$') == 2", waittime) call assert_equal(2, winnr('$')) bwipe call term_start(cmd, {'term_finish': 'open'}) - close + close! call WaitFor("winnr('$') == 2", waittime) call assert_equal(2, winnr('$')) bwipe @@ -385,7 +386,7 @@ func Test_finish_open_close() call assert_fails("call term_start(cmd, {'term_opencmd': 'split % and %d'})", 'E475:') call term_start(cmd, {'term_finish': 'open', 'term_opencmd': '4split | buffer %d'}) - close + close! call WaitFor("winnr('$') == 2", waittime) call assert_equal(2, winnr('$')) call assert_equal(4, winheight(0)) diff --git a/src/version.c b/src/version.c index 8f6d26f1f..8af0c0d2e 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1015, +/**/ 1014, /**/ 1013, |