diff options
| author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-16 14:16:34 (GMT) |
|---|---|---|
| committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-01-16 14:16:34 (GMT) |
| commit | 9843ac2a949950a8dd51bcba03fbdfcb71d0e48f (patch) | |
| tree | 4efb09d21a52695b78db8cfc0841a372283602c2 /tests/parse.test | |
| parent | 8d1982bdd791d4454a5e3f8928b5936b869b0d43 (diff) | |
| parent | 445ffe85310c4a5853d313305b11a4323605c29c (diff) | |
| download | tcl-9843ac2a949950a8dd51bcba03fbdfcb71d0e48f.zip tcl-9843ac2a949950a8dd51bcba03fbdfcb71d0e48f.tar.gz tcl-9843ac2a949950a8dd51bcba03fbdfcb71d0e48f.tar.bz2 | |
merge trunk
Diffstat (limited to 'tests/parse.test')
| -rw-r--r-- | tests/parse.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/parse.test b/tests/parse.test index 0f76d64..bc4107d 100644 --- a/tests/parse.test +++ b/tests/parse.test @@ -26,6 +26,7 @@ testConstraint testparsevarname [llength [info commands testparsevarname]] testConstraint testparsevar [llength [info commands testparsevar]] testConstraint testasync [llength [info commands testasync]] testConstraint testcmdtrace [llength [info commands testcmdtrace]] +testConstraint testevent [llength [info commands testevent]] test parse-1.1 {Tcl_ParseCommand procedure, computing string length} testparser { testparser [bytestring "foo\0 bar"] -1 @@ -1090,6 +1091,14 @@ test parse-20.12 {TclParseBackslash: truncated escape} testparser { testparser {\x12X} 5 } {- {\x12X} 1 word {\x12X} 2 backslash {\x12} 0 text X 0 {}} +test parse-21.0 {Bug 1884496} testevent { + set ::script {set a [p]; return -level 0 $a} + proc ::p {} {string first s $::script} + testevent queue a head $::script + update +} {} + + cleanupTests } |
