Mercurial > vim
changeset 17071:57125309eef3 v8.1.1535
patch 8.1.1535: popup select test fails on Mac
commit https://github.com/vim/vim/commit/650a63748c349bbb60adb912273e9bedd2b677c5
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 15 00:29:33 2019 +0200
patch 8.1.1535: popup select test fails on Mac
Problem: Popup select test fails on Mac.
Solution: Skip test if clipboard feature not available.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 Jun 2019 00:30:05 +0200 |
parents | 11fb04a29c64 |
children | f948bd505764 |
files | src/testdir/test_popupwin.vim src/version.c |
diffstat | 2 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -323,6 +323,9 @@ func Test_popup_select() if !CanRunVimInTerminal() throw 'Skipped: cannot make screendumps' endif + if !has('clipboard') + throw 'Skipped: clipboard feature missing' + endif " create a popup with some text to be selected let lines =<< trim END call setline(1, range(1, 20))