# HG changeset patch # User Bram Moolenaar # Date 1547919006 -3600 # Node ID a0a1bd12e48cfc430f5f3d90718079b3d4bce0b5 # Parent 9812666a6812691f388c0998e61c15cf35859e29 patch 8.1.0780: terminal test fails on Mac commit https://github.com/vim/vim/commit/e25bbc3b2bf1d8c4acec0910aaf9031451752578 Author: Bram Moolenaar Date: Sat Jan 19 18:20:45 2019 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -792,6 +792,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 780, +/**/ 779, /**/ 778,