From 8b53b79ea5304c7714cbb873210c82aa3fc8772f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 5 Sep 2017 20:29:25 +0200 Subject: [PATCH] patch 8.0.1058: terminal redirection test is flaky Problem: Terminal redirection test is flaky. Solution: Wait for job to finish. --- src/testdir/test_terminal.vim | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 2ee25bf7c..800567920 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -614,6 +614,8 @@ func Test_terminal_redir_file() call term_wait(buf) call WaitFor('term_getline(' . buf . ', 1) == "one line"') call assert_equal('one line', term_getline(buf, 1)) + let g:job = term_getjob(buf) + call WaitFor('job_status(g:job) == "dead"') bwipe call delete('Xfile') endif diff --git a/src/version.c b/src/version.c index 8fa740d78..79ce0e042 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1058, /**/ 1057, /**/ -- 2.50.1