annotate src/testdir/test_vim9_fails.vim @ 26410:b94ef0b282f1 v8.2.3736

patch 8.2.3736: test fails without the channel feature Commit: https://github.com/vim/vim/commit/853a7692d19deb6b7c2cabce989b57c8b9908596 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 4 15:00:23 2021 +0000 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 https://github.com/vim/vim/issues/9277)
author Bram Moolenaar <Bram@vim.org>
date Sat, 04 Dec 2021 16:15:03 +0100
parents 744fdb15347d
children 54e36d01847b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22582
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Test for Vim9 script with failures, causing memory leaks to be reported.
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " The leaks happen after a fork() and can be ignored.
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3
26410
b94ef0b282f1 patch 8.2.3736: test fails without the channel feature
Bram Moolenaar <Bram@vim.org>
parents: 26368
diff changeset
4 source check.vim
b94ef0b282f1 patch 8.2.3736: test fails without the channel feature
Bram Moolenaar <Bram@vim.org>
parents: 26368
diff changeset
5
22582
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 def Test_assignment()
26410
b94ef0b282f1 patch 8.2.3736: test fails without the channel feature
Bram Moolenaar <Bram@vim.org>
parents: 26368
diff changeset
7 if !has('channel')
b94ef0b282f1 patch 8.2.3736: test fails without the channel feature
Bram Moolenaar <Bram@vim.org>
parents: 26368
diff changeset
8 CheckFeature channel
b94ef0b282f1 patch 8.2.3736: test fails without the channel feature
Bram Moolenaar <Bram@vim.org>
parents: 26368
diff changeset
9 else
22582
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 var chan1: channel
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 var job1: job
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 var job2: job = job_start('willfail')
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 endif
a3df1fb28d44 patch 8.2.1839: Vim9: memory leaks reported in assign test
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 enddef
26368
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
15
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
16 " Unclear why this test causes valgrind to report problems.
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
17 def Test_job_info_return_type()
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
18 if !has('job')
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
19 CheckFeature job
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
20 else
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
21 var job: job = job_start(&shell)
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
22 var jobs = job_info()
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
23 assert_equal('list<job>', typename(jobs))
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
24 assert_equal('dict<any>', typename(job_info(jobs[0])))
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
25 job_stop(job)
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
26 endif
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
27 enddef
744fdb15347d patch 8.2.3715: Vim9: valgrind reports spurious problems for a test
Bram Moolenaar <Bram@vim.org>
parents: 22582
diff changeset
28