summaryrefslogtreecommitdiffstats
path: root/tests/menu.test
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2015-11-08 20:54:16 (GMT)
committerfvogel <fvogelnew1@free.fr>2015-11-08 20:54:16 (GMT)
commit73b89417809cc91f33a1a6c9679510b21129db52 (patch)
tree3c47999b22defcaefabb3c32718df5fea64b94b7 /tests/menu.test
parentdc5e0089024a6f532879a8c22014223925b8f37d (diff)
parent2028daf50bcb641a8be43c4989a37074d5a00f72 (diff)
downloadtk-73b89417809cc91f33a1a6c9679510b21129db52.zip
tk-73b89417809cc91f33a1a6c9679510b21129db52.tar.gz
tk-73b89417809cc91f33a1a6c9679510b21129db52.tar.bz2
Fixed [2160206fff] - Panic when posting a menu of type menubar
Diffstat (limited to 'tests/menu.test')
-rw-r--r--tests/menu.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/menu.test b/tests/menu.test
index 59239d7..aaadc86 100644
--- a/tests/menu.test
+++ b/tests/menu.test
@@ -3867,6 +3867,18 @@ test menu-35.1 {menu -underline string overruns Bug 1599877} -setup {
deleteWindows
} -result {}
+test menu-37.1 {menubar menues cannot be posted - bug 2160206} -setup {
+ catch {destroy .m}
+} -body {
+ # On Linux the following used to panic
+ # It now returns an error (on all platforms)
+ menu .m -type menubar
+ list [catch ".m post 1 1" msg] $msg
+} -cleanup {
+ destroy .m
+} -result {1 {a menubar menu cannot be posted}}
+
+
# cleanup
imageFinish
deleteWindows