summaryrefslogtreecommitdiffstats
path: root/tests/bind.test
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2019-06-16 17:03:55 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2019-06-16 17:03:55 (GMT)
commit534cbcc613d7d165f84f0fc920d13f216df3fc15 (patch)
tree31174ac32f50931ac79f8a51ea7faf2d6ae79981 /tests/bind.test
parentd3e0c4d2f6a433b4ff9daf4c45df02b547d29fe7 (diff)
downloadtk-534cbcc613d7d165f84f0fc920d13f216df3fc15.zip
tk-534cbcc613d7d165f84f0fc920d13f216df3fc15.tar.gz
tk-534cbcc613d7d165f84f0fc920d13f216df3fc15.tar.bz2
Committed the canary to help with debugging the faults in binding processing
Diffstat (limited to 'tests/bind.test')
-rw-r--r--tests/bind.test27
1 files changed, 25 insertions, 2 deletions
diff --git a/tests/bind.test b/tests/bind.test
index ad731fc..e4d1f1b 100644
--- a/tests/bind.test
+++ b/tests/bind.test
@@ -42,7 +42,7 @@ update
event generate .top <Button-1> -warp 1
update
destroy .top
-
+
test bind-1.1 {bind command} -body {
bind
} -returnCodes error -result {wrong # args: should be "bind window ?pattern? ?command?"}
@@ -6597,7 +6597,30 @@ test bind-33.15 {prefer last in case of homogeneous equal patterns} -setup {
# must be preferred.
} -result {last}
-
+test bind-34.1 {canary for problems with leaking binding tests} -setup {
+ unset -nocomplain ::x
+ set ::x {}
+} -body {
+ proc kill_canvas {} {
+ destroy .c
+ pack [canvas .c -height 200 -width 200] -fill both -expand yes
+ update idle
+ .c create rectangle 80 80 120 120 -fill blue -tags blue
+ # bind a button press to re-build the canvas
+ .c bind blue <ButtonRelease-1> {kill_canvas; append ::x ok}
+ }
+ kill_canvas
+ # do this many times to improve chances of triggering the crash
+ for {set i 0} {$i < 3} {incr i} {
+ event generate .c <1> -x 100 -y 100
+ event generate .c <ButtonRelease-1> -x 100 -y 100
+ }
+ return $::x
+} -cleanup {
+ destroy .c
+ catch {rename kill_canvas {}}
+} -result okokok
+
# cleanup
cleanupTests
return