diff src/testdir/test_terminal.vim @ 15830:69b6cf55d9bb v8.1.0922

patch 8.1.0922: terminal scrollback test is flaky commit https://github.com/vim/vim/commit/96baf02aa87dc6ec43850c5617fe53061edd97bf Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 14 23:49:38 2019 +0100 patch 8.1.0922: terminal scrollback test is flaky Problem: Terminal scrollback test is flaky. Solution: Wait a bit before running the tail command.
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 Feb 2019 00:00:05 +0100
parents 8f112782a2e9
children 85c94163c4ab
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -311,6 +311,7 @@ func Test_terminal_postponed_scrollback(
   call writefile(range(50), 'Xtext')
   call writefile([
 	\ 'terminal',
+	\ 'sleep 100m',
 	\ 'call feedkeys("tail -n 100 -f Xtext\<CR>", "xt")',
 	\ 'sleep 100m',
 	\ 'call feedkeys("\<C-W>N", "xt")',
@@ -318,21 +319,18 @@ func Test_terminal_postponed_scrollback(
   let buf = RunVimInTerminal('-S XTest_postponed', {})
   " Check that the Xtext lines are displayed and in Terminal-Normal mode
   call term_wait(buf)
-  " TODO: this sometimes fails
-  "call VerifyScreenDump(buf, 'Test_terminal_01', {})
+  call VerifyScreenDump(buf, 'Test_terminal_01', {})
 
   silent !echo 'one more line' >>Xtext
   " Sceen will not change, move cursor to get a different dump
   call term_sendkeys(buf, "k")
   call term_wait(buf)
-  " TODO: this sometimes fails
-  "call VerifyScreenDump(buf, 'Test_terminal_02', {})
+  call VerifyScreenDump(buf, 'Test_terminal_02', {})
 
   " Back to Terminal-Job mode, text will scroll and show the extra line.
   call term_sendkeys(buf, "a")
   call term_wait(buf)
-  " TODO: this sometimes fails
-  "call VerifyScreenDump(buf, 'Test_terminal_03', {})
+  call VerifyScreenDump(buf, 'Test_terminal_03', {})
 
   call term_wait(buf)
   call term_sendkeys(buf, "\<C-C>")