diff options
author | vincentdarley <vincentdarley> | 2003-02-04 17:06:44 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-02-04 17:06:44 (GMT) |
commit | 7d7c7570591f8383688fe05c69fdea70106a937e (patch) | |
tree | c50a993eca73882fec1db93099999bb362cc7278 /tests/basic.test | |
parent | adcc02b003f61baa6211d622e14acc3500be5327 (diff) | |
download | tcl-7d7c7570591f8383688fe05c69fdea70106a937e.zip tcl-7d7c7570591f8383688fe05c69fdea70106a937e.tar.gz tcl-7d7c7570591f8383688fe05c69fdea70106a937e.tar.bz2 |
finalization and test fixes
Diffstat (limited to 'tests/basic.test')
-rw-r--r-- | tests/basic.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/basic.test b/tests/basic.test index 52c1484..dbc5216 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.23 2002/07/10 11:56:44 dgp Exp $ +# RCS: @(#) $Id: basic.test,v 1.24 2003/02/04 17:06:52 vincentdarley Exp $ # package require tcltest 2 @@ -587,7 +587,7 @@ test basic-46.2 {Tcl_AllowExceptions: exception return not allowed} {exec} { } BREAKtest] set res [list [catch {exec [interpreter] $fName} msg] $msg] removeFile BREAKtest - regsub {"[^ ]*BREAKtest"} $res {"BREAKtest"} res + regsub {file ".*BREAKtest"} $res {file "BREAKtest"} res set res } {1 {hello invoked "break" outside of a loop @@ -603,7 +603,7 @@ test basic-46.3 {Tcl_AllowExceptions: exception return not allowed} {exec} { } BREAKtest] set res [list [catch {exec [interpreter] $fName} msg] $msg] removeFile BREAKtest - regsub {"[^ ]*BREAKtest"} $res {"BREAKtest"} res + regsub {file ".*BREAKtest"} $res {file "BREAKtest"} res set res } {1 {invoked "break" outside of a loop while executing @@ -616,7 +616,7 @@ test basic-46.4 {Tcl_AllowExceptions: exception return not allowed} {exec} { } BREAKtest] set res [list [catch {exec [interpreter] $fName} msg] $msg] removeFile BREAKtest - regsub {"[^ ]*BREAKtest"} $res {"BREAKtest"} res + regsub {file ".*BREAKtest"} $res {file "BREAKtest"} res set res } {1 {invoked "break" outside of a loop while executing @@ -631,7 +631,7 @@ test basic-46.5 {Tcl_AllowExceptions: exception return not allowed} {exec} { } BREAKtest] set res [list [catch {exec [interpreter] $fName} msg] $msg] removeFile BREAKtest - regsub {"[^ ]*BREAKtest"} $res {"BREAKtest"} res + regsub {file ".*BREAKtest"} $res {file "BREAKtest"} res set res } {1 {command returned bad code: 2 while executing |