From a683ec44c34f0717dcc6a0c03493ba39b879ac38 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 25 Mar 2017 20:14:34 +0100 Subject: patch 8.0.0511: message for skipping client-server tests is unclear Problem: Menuage for skipping client-server tests is unclear. Solution: Be more specific about what's missing (Hirohito Higashi, Kazunobu Kuriyama) --- src/testdir/test_clientserver.vim | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/testdir/test_clientserver.vim') diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim index 58ced56ce3..86dad54d70 100644 --- a/src/testdir/test_clientserver.vim +++ b/src/testdir/test_clientserver.vim @@ -11,13 +11,15 @@ func Test_client_server() if cmd == '' return endif - if has('unix') + if has('x11') + if empty($DISPLAY) + throw 'Skipped: $DISPLAY is not set' + endif try call remote_send('xxx', '') catch if v:exception =~ 'E240:' - " No connection to the X server, give up. - return + throw 'Skipped: no connection to the X server' endif " ignore other errors endtry -- cgit v1.2.3