summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_channel.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-15 14:19:26 +0100
committerBram Moolenaar <Bram@vim.org>2020-03-15 14:19:26 +0100
commit353c351bd22e4dac4c3ae9cd7731032348f248c4 (patch)
tree01f887d396021e8242699c44d8950e0e171dee09 /src/testdir/test_channel.vim
parent2573af3519ad062ddad647b97e32090f106f2ac1 (diff)
patch 8.2.0382: some tests fail when run under valgrindv8.2.0382
Problem: Some tests fail when run under valgrind. Solution: Increase timeouts.
Diffstat (limited to 'src/testdir/test_channel.vim')
-rw-r--r--src/testdir/test_channel.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim
index e1f8a5e352..af767d2c40 100644
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -1999,15 +1999,15 @@ func Test_issue_5150()
endif
let g:job = job_start(cmd, {})
call job_stop(g:job)
- sleep 10m
+ sleep 50m
call assert_equal(-1, job_info(g:job).exitval)
let g:job = job_start(cmd, {})
call job_stop(g:job, 'term')
- sleep 10m
+ sleep 50m
call assert_equal(-1, job_info(g:job).exitval)
let g:job = job_start(cmd, {})
call job_stop(g:job, 'kill')
- sleep 10m
+ sleep 50m
call assert_equal(-1, job_info(g:job).exitval)
endfunc