diff src/testdir/test_tcl.vim @ 19740:a653d1a165ef v8.2.0426

patch 8.2.0426: some errors were not tested for Commit: https://github.com/vim/vim/commit/9b9be007e7d674f49fc2b650f840d08532b180ad Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 22 14:41:22 2020 +0100 patch 8.2.0426: some errors were not tested for Problem: Some errors were not tested for. Solution: Add tests. (Dominique Pelle, closes https://github.com/vim/vim/issues/5824)
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Mar 2020 14:45:04 +0100
parents 9606c0adc148
children 04ef2ccf2519
line wrap: on
line diff
--- a/src/testdir/test_tcl.vim
+++ b/src/testdir/test_tcl.vim
@@ -653,6 +653,9 @@ endfunc
 
 " Test exiting current Tcl interpreter and re-creating one.
 func Test_tcl_exit()
+  call assert_fails('tcl exit 1 1', 'wrong # args: should be "exit ?returnCode?"')
+  call assert_fails('tcl exit x', 'expected integer but got "x"')
+
   tcl set foo "foo"
   call assert_fails('tcl exit 3', 'E572: exit code 3')