diff options
Diffstat (limited to 'tests/basic.test')
-rw-r--r-- | tests/basic.test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/basic.test b/tests/basic.test index dbc5216..c45a763 100644 --- a/tests/basic.test +++ b/tests/basic.test @@ -15,7 +15,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: basic.test,v 1.24 2003/02/04 17:06:52 vincentdarley Exp $ +# RCS: @(#) $Id: basic.test,v 1.25 2003/02/16 01:36:32 msofer Exp $ # package require tcltest 2 @@ -638,6 +638,10 @@ test basic-46.5 {Tcl_AllowExceptions: exception return not allowed} {exec} { "return -code return" (file "BREAKtest" line 2)}} +test basic-47.1 {Tcl_EvalEx: check for missing close-bracket} -body { + subst {a[set b [format cd]} +} -returnCodes error -result {missing close-bracket} + # cleanup catch {eval namespace delete [namespace children :: test_ns_*]} |