summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-05-30 18:33:40 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-05-30 18:33:40 (GMT)
commitf363246b699fde869681e5213bc1e6e100e81529 (patch)
tree0feec6a06cde63ca3b4b0bd6129f1824451219db /tests
parent88516c26fd029f03f6ace99463da1ece2844399f (diff)
parentef21094dd7164fbf1d96d8c33570f4803b7e35e6 (diff)
downloadtk-f363246b699fde869681e5213bc1e6e100e81529.zip
tk-f363246b699fde869681e5213bc1e6e100e81529.tar.gz
tk-f363246b699fde869681e5213bc1e6e100e81529.tar.bz2
Fixed [79549a9134] - Mouse pointer warping crashes
Diffstat (limited to 'tests')
-rw-r--r--tests/bind.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bind.test b/tests/bind.test
index ab3fa15..ff1b4f9 100644
--- a/tests/bind.test
+++ b/tests/bind.test
@@ -6101,6 +6101,18 @@ test bind-31.7 {virtual event user_data field - unshared, asynch} -setup {
destroy .t.f
} -result {{} {} {TestUserData >b<}}
+test bind-32 {-warp, window was destroyed before the idle callback DoWarp} -setup {
+ frame .t.f
+ pack .t.f
+ focus -force .t.f
+ update
+} -body {
+ event generate .t.f <Button-1> -warp 1
+ destroy .t.f
+ update ; # shall simply not crash
+} -cleanup {
+} -result {}
+
# cleanup
cleanupTests