comparison src/testdir/test_diffmode.vim @ 17385:f178127b7255 v8.1.1691

patch 8.1.1691: diff test fails on some systems commit https://github.com/vim/vim/commit/37d9f175a4ab885052583746982d6bbfbe0095b9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 14 17:26:46 2019 +0200 patch 8.1.1691: diff test fails on some systems Problem: Diff test fails on some systems. (Elimar Riesebieter) Solution: Add a term_wait() call.
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jul 2019 17:30:04 +0200
parents 9508c12eec55
children d7708560b77c
comparison
equal deleted inserted replaced
17384:1b0089e2d12c 17385:f178127b7255
741 " Verify a screendump with the internal diff only. 741 " Verify a screendump with the internal diff only.
742 func VerifyInternal(buf, dumpfile, extra) 742 func VerifyInternal(buf, dumpfile, extra)
743 call term_sendkeys(a:buf, ":diffupdate!\<CR>") 743 call term_sendkeys(a:buf, ":diffupdate!\<CR>")
744 " trailing : for leaving the cursor on the command line 744 " trailing : for leaving the cursor on the command line
745 call term_sendkeys(a:buf, ":set diffopt=internal,filler" . a:extra . "\<CR>:") 745 call term_sendkeys(a:buf, ":set diffopt=internal,filler" . a:extra . "\<CR>:")
746 call term_wait(a:buf)
746 call VerifyScreenDump(a:buf, a:dumpfile, {}) 747 call VerifyScreenDump(a:buf, a:dumpfile, {})
747 endfunc 748 endfunc
748 749
749 func Test_diff_screen() 750 func Test_diff_screen()
750 if !CanRunVimInTerminal() || !has('menu') 751 if !CanRunVimInTerminal() || !has('menu')