From 753289f9bf71c0528f00d803a39d017184640e9d Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 25 Aug 2017 23:22:05 +0200 Subject: [PATCH] patch 8.0.0995: terminal tests fail on Mac Problem: Terminal tests fail on Mac. Solution: Add workaround: sleep a moment in between sending keys. --- src/testdir/test_terminal.vim | 5 +++++ src/version.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index bdc5655d5..2356f2c53 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -456,6 +456,11 @@ func Test_terminal_noblock() for c in ['a','b','c','d','e','f','g','h','i','j','k'] call term_sendkeys(g:buf, 'echo ' . repeat(c, 5000) . "\") + if has('mac') + " TODO: this should not be needed, but without it sending keys blocks + " after 8000 chars or so. + sleep 100m + endif endfor call term_sendkeys(g:buf, "echo done\") diff --git a/src/version.c b/src/version.c index 318053950..9ce38f03a 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 */ +/**/ + 995, /**/ 994, /**/ -- 2.50.1