diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-13 22:35:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-13 22:35:29 +0200 |
commit | 87dcfd75c218107ca966c80a0a56b236be046fc9 (patch) | |
tree | 2bf8971a97db0589072e1acbe7d909e9d7d213b9 /src/testdir/screendump.vim | |
parent | 39f76c6ac0f5e07a0e608ddf920a67702ec83824 (diff) | |
download | vim-git-87dcfd75c218107ca966c80a0a56b236be046fc9.tar.gz |
patch 8.1.1168: not all screen update code of terminal is executed in testsv8.1.1168
Problem: Not all screen update code of the terminal window is executed in
tests.
Solution: Redraw before taking a screenshot.
Diffstat (limited to 'src/testdir/screendump.vim')
-rw-r--r-- | src/testdir/screendump.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim index 401541923..1630dfa0c 100644 --- a/src/testdir/screendump.vim +++ b/src/testdir/screendump.vim @@ -113,6 +113,10 @@ func VerifyScreenDump(buf, filename, options, ...) let reference = 'dumps/' . a:filename . '.dump' let testfile = 'failed/' . a:filename . '.dump' + " Redraw to execut the code that updates the screen. Otherwise we get the + " text and attributes only from the internal buffer. + redraw + let did_mkdir = 0 if !isdirectory('failed') let did_mkdir = 1 |