comparison 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
comparison
equal deleted inserted replaced
15544:9812666a6812 15545:a0a1bd12e48c
641 641
642 bwipe! 642 bwipe!
643 endfunc 643 endfunc
644 644
645 func Test_terminal_no_cmd() 645 func Test_terminal_no_cmd()
646 " Does not work on Mac.
646 " Todo: make this work on Win32 again 647 " Todo: make this work on Win32 again
647 if has('win32') 648 if has('mac') || has('win32')
648 return 649 return
649 endif 650 endif
650 let buf = term_start('NONE', {}) 651 let buf = term_start('NONE', {})
651 call assert_notequal(0, buf) 652 call assert_notequal(0, buf)
652 653