From: Bram Moolenaar Date: Wed, 8 Jan 2020 18:27:40 +0000 (+0100) Subject: patch 8.2.0102: messages test fails in small version X-Git-Tag: v8.2.0102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da292b07afb7ea5ec9f4b43a7326551922e29f3a;p=thirdparty%2Fvim.git patch 8.2.0102: messages test fails in small version Problem: Messages test fails in small version. Solution: Only use test_null_job() when available. --- diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim index 3e7d63c7dd..62a191ec8d 100644 --- a/src/testdir/test_messages.vim +++ b/src/testdir/test_messages.vim @@ -273,8 +273,10 @@ func Test_null() echom test_null_list() echom test_null_dict() echom test_null_blob() - echom test_null_job() echom test_null_string() - echom test_null_channel() echom test_null_partial() + if has('job') + echom test_null_job() + echom test_null_channel() + endif endfunc diff --git a/src/version.c b/src/version.c index ba690bcc52..a02b198c5c 100644 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 102, /**/ 101, /**/