diff options
author | jenn <jenn> | 1999-08-23 17:54:59 (GMT) |
---|---|---|
committer | jenn <jenn> | 1999-08-23 17:54:59 (GMT) |
commit | 5091b794329105b393227690593b14fbfa6e37bc (patch) | |
tree | 0d2ef94dcb7e154f0633f0e6a6c0d977ebdad5a6 /tests/interp.test | |
parent | 4c6a266de934cd6b3f8f0f3b93b2b6130d9ba3fa (diff) | |
download | tcl-5091b794329105b393227690593b14fbfa6e37bc.zip tcl-5091b794329105b393227690593b14fbfa6e37bc.tar.gz tcl-5091b794329105b393227690593b14fbfa6e37bc.tar.bz2 |
* tests/tcltest.test: Added additional tests for -tmpdir, marked
all tests that use exec as unixOrPc.
* tests/encoding.test:
* tests/interp.test:
* tests/macFCmd.test:
* tests/parseOld.test:
* tests/regexp.test: Applied patches from Jim Ingham to add
encoding to a Mac only interp test, change an error message in
macFCmd.tet, put a comment in parseOld.test, fix tests using the
testencoding path command, and put unixOrPc constraints on tests
that use exec.
Diffstat (limited to 'tests/interp.test')
-rw-r--r-- | tests/interp.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/interp.test b/tests/interp.test index ed37f6b..91dfcb5 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.9 1999/06/26 20:55:08 rjohnson Exp $ +# RCS: @(#) $Id: interp.test,v 1.10 1999/08/23 17:54:59 jenn Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -1701,7 +1701,7 @@ test interp-23.3 {testing hiding vs aliases} {macOnly} { lappend l [lsort [interp hidden a]] interp delete a set l -} {{beep cd echo exit fconfigure file glob load ls open pwd socket source} bar {beep cd echo exit fconfigure file glob load ls open pwd socket source} bar {bar beep cd echo exit fconfigure file glob load ls open pwd socket source} {} {beep cd echo exit fconfigure file glob load ls open pwd socket source}} +} {{beep cd echo encoding exit fconfigure file glob load ls open pwd socket source} bar {beep cd echo encoding exit fconfigure file glob load ls open pwd socket source} bar {bar beep cd echo encoding exit fconfigure file glob load ls open pwd socket source} {} {beep cd echo encoding exit fconfigure file glob load ls open pwd socket source}} test interp-24.1 {result resetting on error} { catch {interp delete a} |