From a903472cfa048e7a29d9c6ed0945ef03e48c6a08 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 13 Mar 2018 15:43:46 +0100 Subject: patch 8.0.1604: paste test may fail if $DISPLAY is not set Problem: Paste test may fail if $DISPLAY is not set. Solution: Add WorkingClipboard() and use it in the paste test. --- src/testdir/test_paste.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/testdir/test_paste.vim') diff --git a/src/testdir/test_paste.vim b/src/testdir/test_paste.vim index 6450989ec..65f300cef 100644 --- a/src/testdir/test_paste.vim +++ b/src/testdir/test_paste.vim @@ -6,6 +6,8 @@ if has('gui_running') endif set term=xterm +source shared.vim + func Test_paste_normal_mode() new " In first column text is inserted @@ -67,7 +69,7 @@ func Test_paste_insert_mode() endfunc func Test_paste_clipboard() - if !has('clipboard') + if !WorkingClipboard() return endif let @+ = "nasty\:!ls\command" -- cgit v1.2.1