From: Bram Moolenaar Date: Sat, 4 Dec 2021 15:00:23 +0000 (+0000) Subject: patch 8.2.3736: test fails without the channel feature X-Git-Tag: v8.2.3736 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=853a7692d19deb6b7c2cabce989b57c8b9908596;p=vim patch 8.2.3736: test fails without the channel feature Problem: Test fails without the channel feature. (Dominique Pellé) Solution: Source the check.vim script. (closes #9277) --- diff --git a/src/testdir/test_vim9_fails.vim b/src/testdir/test_vim9_fails.vim index 216ef0b28..5c3cab545 100644 --- a/src/testdir/test_vim9_fails.vim +++ b/src/testdir/test_vim9_fails.vim @@ -1,8 +1,12 @@ " Test for Vim9 script with failures, causing memory leaks to be reported. " The leaks happen after a fork() and can be ignored. +source check.vim + def Test_assignment() - if has('channel') + if !has('channel') + CheckFeature channel + else var chan1: channel var job1: job var job2: job = job_start('willfail') diff --git a/src/version.c b/src/version.c index 55d233170..02743239f 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3736, /**/ 3735, /**/