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/parseOld.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/parseOld.test')
-rw-r--r-- | tests/parseOld.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/parseOld.test b/tests/parseOld.test index fc450b3..a692bbb 100644 --- a/tests/parseOld.test +++ b/tests/parseOld.test @@ -13,7 +13,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: parseOld.test,v 1.6 1999/07/06 23:55:44 jenn Exp $ +# RCS: @(#) $Id: parseOld.test,v 1.7 1999/08/23 17:54:59 jenn Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -340,6 +340,11 @@ test parseOld-10.13 {syntax errors} { {b}] set a } {a b} + +# The next test will fail on the Mac, 'cause the MSL uses a fixed sized +# buffer for %d conversions (LAME!). I won't leave the test out, however, +# since MetroWerks may some day fix this. + test parseOld-10.14 {syntax errors} { list [catch {eval \$x[format "%01000d" 0](} msg] $msg $errorInfo } {1 {missing )} {missing ) |