]> granicus.if.org Git - vim/commitdiff
patch 8.1.0088: terminal test for stdout and stderr is a bit flaky v8.1.0088
authorBram Moolenaar <Bram@vim.org>
Tue, 19 Jun 2018 18:08:14 +0000 (20:08 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 19 Jun 2018 18:08:14 +0000 (20:08 +0200)
Problem:    Terminal test for stdout and stderr is a bit flaky.
Solution:   Wait for both stdout and stderr to have been processed. (Ozaki
            Kiichi, closes #2991)

src/testdir/test_terminal.vim
src/version.c

index bce7e10dee20dabee0af8bdeef6a1725ebb7de35..52c35aaaad5731b77b4333621a1351a7d00634de 100644 (file)
@@ -1487,8 +1487,9 @@ func Test_terminal_out_err()
 
   let outfile = 'Xtermstdout'
   let buf = term_start(['./Xechoerrout.sh'], {'out_io': 'file', 'out_name': outfile})
-  call WaitForAssert({-> assert_inrange(1, 2, len(readfile(outfile)))})
-  call assert_equal("this is standard out", readfile(outfile)[0])
+
+  call WaitFor({-> !empty(readfile(outfile)) && !empty(term_getline(buf, 1))})
+  call assert_equal(['this is standard out'], readfile(outfile))
   call assert_equal('this is standard error', term_getline(buf, 1))
 
   call WaitForAssert({-> assert_equal('dead', job_status(term_getjob(buf)))})
index 72a8238581c3e9bac832433f6d65faf3bdef884d..9a1fbc65441f6016707ec6511962a9cec4cc4c4d 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    88,
 /**/
     87,
 /**/