diff options
Diffstat (limited to 'tests/interp.test')
-rw-r--r-- | tests/interp.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/interp.test b/tests/interp.test index 715154c..8b77842 100644 --- a/tests/interp.test +++ b/tests/interp.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: interp.test,v 1.4 1998/10/14 21:12:09 rjohnson Exp $ +# RCS: @(#) $Id: interp.test,v 1.5 1998/11/02 23:04:14 stanton Exp $ if {[string compare test [info procs test]] == 1} then {source defs} @@ -189,6 +189,9 @@ test interp-4.7 {testing interp delete} { interp create c2 list [catch {interp delete c1 c2 c3} msg] $msg } {1 {interpreter named "c3" not found}} +test interp-4.8 {testing interp delete} { + list [catch {interp delete {}} msg] $msg +} {1 {interpreter named "" not found}} foreach i [interp slaves] { interp delete $i |