diff options
author | stanton <stanton> | 1998-11-02 23:04:13 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-11-02 23:04:13 (GMT) |
commit | 099b6e9e41a346098526d7088680732358fa2e72 (patch) | |
tree | f83adf3b279fbc76856cab9fd4e55a88127e5a8c /tests/interp.test | |
parent | f8c896766a7b11645db9f8c553ccb6fff4529996 (diff) | |
download | tcl-099b6e9e41a346098526d7088680732358fa2e72.zip tcl-099b6e9e41a346098526d7088680732358fa2e72.tar.gz tcl-099b6e9e41a346098526d7088680732358fa2e72.tar.bz2 |
cleaned up test suite so most of the tests pass on Windows
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 |