summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-06-21 18:34:42 +0100
committerBram Moolenaar <Bram@vim.org>2022-06-21 18:34:42 +0100
commitcf801d4b95180ddaee1bf633ef482232625dd80b (patch)
tree42076022555a8572e42dfef38d50d927cff18846 /src/testdir/test_channel.vim
parentc856ceb300ff8871ed546e36638f1a28531c379c (diff)
patch 8.2.5145: exit test causes spurious valgrind reportsv8.2.5145
Problem: Exit test causes spurious valgrind reports. Solution: Skip test. Add CheckNotValgrind.
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index a7a609bd0e..d299ee3e62 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -1793,9 +1793,7 @@ endfunc
func Test_job_stop_immediately()
" With valgrind this causes spurious leak reports
- if RunningWithValgrind()
- return
- endif
+ CheckNotValgrind
let g:job = job_start([s:python, '-c', 'import time;time.sleep(10)'])
try