0
0
mirror of https://github.com/vim/vim.git synced 2025-10-12 06:44:06 -04:00

patch 8.2.0031: MS-Windows: test for empty job fails

Problem:    MS-Windows: test for empty job fails
Solution:   Check for error message, make it also fail on Unix.
This commit is contained in:
Bram Moolenaar
2019-12-22 16:09:06 +01:00
parent 64e74c9cc7
commit ba0a7475c5
3 changed files with 14 additions and 4 deletions

View File

@@ -5943,11 +5943,19 @@ job_start(
if (build_argv_from_list(l, &argv, &argc) == FAIL)
goto theend;
#ifndef USE_ARGV
// Empty command is invalid.
#ifdef USE_ARGV
if (argc == 0 || *skipwhite((char_u *)argv[0]) == NUL)
{
emsg(_(e_invarg));
goto theend;
}
#else
if (win32_build_cmd(l, &ga) == FAIL)
goto theend;
cmd = ga.ga_data;
if (cmd == NULL)
if (cmd == NULL || *skipwhite(cmd) == NUL)
{
emsg(_(e_invarg));
goto theend;

View File

@@ -1960,8 +1960,8 @@ endfunc
func Test_empty_job()
" This was crashing on MS-Windows.
let job = job_start([""])
call WaitForAssert({-> assert_equal("dead", job_status(job))})
call assert_fails('let job = job_start([""])', 'E474:')
call assert_fails('let job = job_start([" "])', 'E474:')
endfunc
" Do this last, it stops any channel log.

View File

@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
31,
/**/
30,
/**/