diff --git a/src/testdir/test_channel.vim b/src/testdir/test_channel.vim index 5634b98c9f..17cdb7cac0 100644 --- a/src/testdir/test_channel.vim +++ b/src/testdir/test_channel.vim @@ -1860,7 +1860,8 @@ func Test_job_exitval_and_termsig() " Terminate job by signal let cmd = ['sleep', '10'] let job = job_start(cmd) - sleep 10m + " 10m usually works but 50m is needed when running Valgrind + sleep 50m call job_stop(job) call WaitForAssert({-> assert_equal("dead", job_status(job))}) let info = job_info(job) diff --git a/src/version.c b/src/version.c index f991cfb3a3..53b9538c17 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 */ +/**/ + 2404, /**/ 2403, /**/