From: Bram Moolenaar Date: Sat, 19 Jan 2019 17:20:45 +0000 (+0100) Subject: patch 8.1.0780: terminal test fails on Mac X-Git-Tag: v8.1.0780 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e25bbc3b2bf1d8c4acec0910aaf9031451752578;p=thirdparty%2Fvim.git patch 8.1.0780: terminal test fails on Mac Problem: Terminal test fails on Mac. Solution: Skip the test on Mac. --- diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 0e0c76c02c..f78d66ca2c 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -643,8 +643,9 @@ func Test_terminal_write_stdin() endfunc func Test_terminal_no_cmd() + " Does not work on Mac. " Todo: make this work on Win32 again - if has('win32') + if has('mac') || has('win32') return endif let buf = term_start('NONE', {}) diff --git a/src/version.c b/src/version.c index f6f3b3a284..946a6a2df8 100644 --- a/src/version.c +++ b/src/version.c @@ -791,6 +791,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 780, /**/ 779, /**/