diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-02-11 12:15:28 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-02-11 12:15:28 (GMT) |
commit | eb1d187f6b45b49683df1093661e3dd3b00844f3 (patch) | |
tree | 11dec56952008a768b3de4a1779ef78509f487e7 /tests/basic.test | |
parent | 845d57e6dffb951a34e335af39e3b372ac51b43f (diff) | |
download | tcl-eb1d187f6b45b49683df1093661e3dd3b00844f3.zip tcl-eb1d187f6b45b49683df1093661e3dd3b00844f3.tar.gz tcl-eb1d187f6b45b49683df1093661e3dd3b00844f3.tar.bz2 |
* tests/basic.test (basic-26.3): new test
Diffstat (limited to 'tests/basic.test')
-rw-r--r-- | tests/basic.test | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/tests/basic.test b/tests/basic.test index 7a4b58d..aaf6a65 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.37 2005/02/10 19:08:12 msofer Exp $ +# RCS: @(#) $Id: basic.test,v 1.38 2005/02/11 12:15:45 msofer Exp $ # package require tcltest 2 @@ -444,7 +444,8 @@ test basic-26.2 {Tcl_EvalObjEx, pure-list branch: preserve "objv"} { # a - the pure-list internal rep is destroyed by shimmering # b - the command returns an error # As the error code in Tcl_EvalObjv accesses the list elements, this will - # cause a segfault if [Bug 1119369] has not been fixed. + # cause a segfault if [Bug 1119369] has not been fixed. + # NOTE: a MEM_DEBUG build may be necessary to guarantee the segfault. # set SRC [list foo 1] ;# pure-list command @@ -456,6 +457,24 @@ test basic-26.2 {Tcl_EvalObjEx, pure-list branch: preserve "objv"} { catch {eval $SRC} } 1 +test basic-26.3 {Tcl_EvalObjEx, pure-list branch: preserve "objv"} { + # + # Follow the pure-list branch in a manner that + # a - the pure-list internal rep is destroyed by shimmering + # b - the command accesses its command line + # This will cause a segfault if [Bug 1119369] has not been fixed. + # NOTE: a MEM_DEBUG build may be necessary to guarantee the segfault. + # + + set SRC [list foo 1] ;# pure-list command + proc foo str { + # Shimmer pure-list to cmdName, cleanup and error + proc $::SRC {} {}; $::SRC + info level 0 + } + catch {eval $SRC} +} 0 + test basic-27.1 {Tcl_ExprLong} {emptyTest} { } {} |