]> granicus.if.org Git - vim/commitdiff
patch 8.0.0184: when an error is caught Vim still exits with non-zero result v8.0.0184
authorBram Moolenaar <Bram@vim.org>
Sat, 14 Jan 2017 18:24:52 +0000 (19:24 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 14 Jan 2017 18:24:52 +0000 (19:24 +0100)
Problem:    When in Ex mode and an error is caught by try-catch, Vim still
            exits with a non-zero exit code.
Solution:   Don't set ex_exitval when inside a try-catch. (partly by Christian
            Brabandt)

src/message.c
src/testdir/test_system.vim
src/version.c

index 7dda6fa893419bfb2dd1b9001e56b51aed554ae9..2982a4051ed24f1039601db2b06965f34f1bbfbb 100644 (file)
@@ -578,8 +578,6 @@ emsg(char_u *s)
        return TRUE;
 
     called_emsg = TRUE;
-    if (emsg_silent == 0)
-       ex_exitval = 1;
 
     /*
      * If "emsg_severe" is TRUE: When an error exception is to be thrown,
@@ -642,6 +640,8 @@ emsg(char_u *s)
            return TRUE;
        }
 
+       ex_exitval = 1;
+
        /* Reset msg_silent, an error causes messages to be switched back on. */
        msg_silent = 0;
        cmd_silent = FALSE;
index 0446bd91058785e1ce0d0e89f46f4eba82c8927b..f82f751a91854213eda63b164a0d28da8c8a09c1 100644 (file)
@@ -46,3 +46,40 @@ function! Test_System()
 
   call assert_fails('call system("wc -l", 99999)', 'E86:')
 endfunction
+
+function! Test_system_exmode()
+  let cmd=" -es -u NONE -c 'source Xscript' +q; echo $?"
+  " Need to put this in a script, "catch" isn't found after an unknown
+  " function.
+  call writefile(['try', 'call doesnotexist()', 'catch', 'endtry'], 'Xscript')
+  let a = system(v:progpath . cmd)
+  call assert_equal('0', a[0])
+  call assert_equal(0, v:shell_error)
+
+  " Error before try does set error flag.
+  call writefile(['call nosuchfunction()', 'try', 'call doesnotexist()', 'catch', 'endtry'], 'Xscript')
+  let a = system(v:progpath . cmd)
+  call assert_notequal('0', a[0])
+
+  let cmd=" -es -u NONE -c 'source Xscript' +q"
+  let a = system(v:progpath . cmd)
+  call assert_notequal(0, v:shell_error)
+
+  let cmd=" -es -u NONE -c 'call doesnotexist()' +q; echo $?"
+  let a = system(v:progpath. cmd)
+  call assert_notequal(0, a[0])
+
+  let cmd=" -es -u NONE -c 'call doesnotexist()' +q"
+  let a = system(v:progpath. cmd)
+  call assert_notequal(0, v:shell_error)
+
+  let cmd=" -es -u NONE -c 'call doesnotexist()|let a=1' +q; echo $?"
+  let a = system(v:progpath. cmd)
+  call assert_notequal(0, a[0])
+
+  let cmd=" -es -u NONE -c 'call doesnotexist()|let a=1' +q"
+  let a = system(v:progpath. cmd)
+  call assert_notequal(0, v:shell_error)
+
+  call delete('Xscript')
+endfunc
index 562757a722f0e02a1b7b652de9453f346d99aff7..be361f5c4a64be9b21e28867e7ec8670788c725a 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    184,
 /**/
     183,
 /**/