diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-19 22:04:38 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-11-19 22:04:38 (GMT) |
commit | e26a569c68c90ec0011ec6b4e464fb77c78b7d89 (patch) | |
tree | 803b1e91e61b1c8749ab92857b139b1f5b474a78 /tests | |
parent | 43f12dcb2dc6be1a838da527880200a7a483e2ac (diff) | |
download | tcl-e26a569c68c90ec0011ec6b4e464fb77c78b7d89.zip tcl-e26a569c68c90ec0011ec6b4e464fb77c78b7d89.tar.gz tcl-e26a569c68c90ec0011ec6b4e464fb77c78b7d89.tar.bz2 |
Fixed Bug 845412; long commands without expansion don't get tangled with the
expansion machinery now...
Diffstat (limited to 'tests')
-rw-r--r-- | tests/compile.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/compile.test b/tests/compile.test index 1fb445c..809c69a 100644 --- a/tests/compile.test +++ b/tests/compile.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: compile.test,v 1.28 2003/11/14 20:44:46 dgp Exp $ +# RCS: @(#) $Id: compile.test,v 1.29 2003/11/19 22:04:39 dkf Exp $ package require tcltest 2 namespace import -force ::tcltest::* @@ -503,6 +503,13 @@ test compile-16.21.$noComp {TclCompileScript: word expansion} -body { rename LongList {} } -returnCodes ok -result [expr {wide(1)<<32}] +test compile-16.22.$noComp {TclCompileScript: word expansion not mandatory} -body { + proc ReturnResults args {return $args} + if 1 "ReturnResults [string repeat {x } 260]" +} -constraints $constraints -cleanup { + rename ReturnResults {} +} -returnCodes ok -result [string trim [string repeat {x } 260]] + } ;# End of noComp loop # cleanup |