summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormig <mig>2013-01-11 23:29:46 (GMT)
committermig <mig>2013-01-11 23:29:46 (GMT)
commite8ffff0c7bd7b4a82bb2d50631dc13b6a081636d (patch)
tree99aa2168e58535f08135501a38216ce933c195cc
parente5fc72423c12d157618f81231cc5ae12e0e8fc76 (diff)
parent1092d1065d97d23b48062e4390604b39ff939aca (diff)
downloadtcl-e8ffff0c7bd7b4a82bb2d50631dc13b6a081636d.zip
tcl-e8ffff0c7bd7b4a82bb2d50631dc13b6a081636d.tar.gz
tcl-e8ffff0c7bd7b4a82bb2d50631dc13b6a081636d.tar.bz2
merge trunk
-rw-r--r--tests/parse.test9
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
}