diff src/testdir/test_terminal.vim @ 15545:a0a1bd12e48c v8.1.0780

patch 8.1.0780: terminal test fails on Mac commit https://github.com/vim/vim/commit/e25bbc3b2bf1d8c4acec0910aaf9031451752578 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Jan 2019 18:30:06 +0100
parents 0e39325d5ea1
children c0560da7873e
line wrap: on
line diff
--- 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', {})