summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-10-01 03:10:35 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-10-01 03:10:35 (GMT)
commite4934a0b0d10dcb22c615f1ff62a6e596b753455 (patch)
treef8b35fdda3fe85388bcbea559accd2e74916e7d3 /tests
parent867b2ba591026b6f486b636329810e80b5069077 (diff)
downloadtcl-e4934a0b0d10dcb22c615f1ff62a6e596b753455.zip
tcl-e4934a0b0d10dcb22c615f1ff62a6e596b753455.tar.gz
tcl-e4934a0b0d10dcb22c615f1ff62a6e596b753455.tar.bz2
* generic/tclBasic.c (Tcl_EvalObjEx): Removed the flag bit value
* generic/tclInt.h (Interp): USE_EVAL_DIRECT. It was used only * generic/tcLTest.c (TestevalexObjCmd): in the testing command * tests/parser.test (parse-9.2): [testevalex] and nothing in the test suite made use of the capability it enabled.
Diffstat (limited to 'tests')
-rw-r--r--tests/parse.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/parse.test b/tests/parse.test
index 2ae8152..619cfdd 100644
--- a/tests/parse.test
+++ b/tests/parse.test
@@ -8,7 +8,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: parse.test,v 1.18 2003/11/24 19:06:08 dgp Exp $
+# RCS: @(#) $Id: parse.test,v 1.19 2004/10/01 03:10:36 dgp Exp $
if {[catch {package require tcltest 2.0.2}]} {
puts stderr "Skipping tests in [info script]. tcltest 2.0.2 required."
@@ -392,8 +392,8 @@ test parse-9.1 {Tcl_LogCommandInfo, line numbers} testevalex {
# asdf
set x
}}"}}
-test parse-9.2 {Tcl_LogCommandInfo, truncating long commands} testevalex {
- list [testevalex {catch {set a b 111111111 222222222 333333333 444444444 555555555 666666666 777777777 888888888 999999999 000000000 aaaaaaaaa bbbbbbbbb ccccccccc ddddddddd eeeeeeeee fffffffff ggggggggg}}] $errorInfo
+test parse-9.2 {Tcl_LogCommandInfo, truncating long commands} {
+ list [catch {set a b 111111111 222222222 333333333 444444444 555555555 666666666 777777777 888888888 999999999 000000000 aaaaaaaaa bbbbbbbbb ccccccccc ddddddddd eeeeeeeee fffffffff ggggggggg}] $errorInfo
} {1 {wrong # args: should be "set varName ?newValue?"
while executing
"set a b 111111111 222222222 333333333 444444444 555555555 666666666 777777777 888888888 999999999 000000000 aaaaaaaaa bbbbbbbbb ccccccccc ddddddddd ee..."}}