diff options
author | fvogel <fvogelnew1@free.fr> | 2023-01-14 13:11:59 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2023-01-14 13:11:59 (GMT) |
commit | f59e9667b1798606e3271413c17d8f4d682bb3f5 (patch) | |
tree | 6fb9db325334705ec2dce2097d5c3382a4ee6238 /tests/entry.test | |
parent | 12ea92cac82cd5aacc5f22ed129800478b17bc96 (diff) | |
download | tk-f59e9667b1798606e3271413c17d8f4d682bb3f5.zip tk-f59e9667b1798606e3271413c17d8f4d682bb3f5.tar.gz tk-f59e9667b1798606e3271413c17d8f4d682bb3f5.tar.bz2 |
Ticket [370b1ff03e]. Confirm the issue is in Tcl (see Tcl's branch [https://core.tcl-lang.org/tcl/timeline?r=bug-370b1ff03e|bug-370b1ff03e] against which we temporarily build on macOS with clang) by removing the 'failsOnXQuartz' constraints in entry.test and spinbox.test.
Diffstat (limited to 'tests/entry.test')
-rw-r--r-- | tests/entry.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/entry.test b/tests/entry.test index a7e9313..e5fdbb6 100644 --- a/tests/entry.test +++ b/tests/entry.test @@ -742,7 +742,7 @@ test entry-3.6 {EntryWidgetCmd procedure, "bbox" widget command} -constraints { destroy .e } -result {{19 5 7 13} {19 5 7 13}} test entry-3.7 {EntryWidgetCmd procedure, "bbox" widget command} -constraints { - fonts failsOnXQuarz + fonts } -setup { entry .e -font {Courier -12} -borderwidth 2 -highlightthickness 2 pack .e ; update idletasks @@ -755,7 +755,7 @@ test entry-3.7 {EntryWidgetCmd procedure, "bbox" widget command} -constraints { destroy .e } -result {19 5 12 13} test entry-3.8 {EntryWidgetCmd procedure, "bbox" widget command} -constraints { - fonts failsOnXQuarz + fonts } -setup { entry .e -font {Courier -12} -borderwidth 2 -highlightthickness 2 pack .e ; update idletasks @@ -778,7 +778,7 @@ test entry-3.9 {EntryWidgetCmd procedure, "bbox" widget command} -setup { destroy .e } -result "5 5 0 $cy" test entry-3.10 {EntryWidgetCmd procedure, "bbox" widget command} -constraints { - fonts failsOnXQuarz + fonts } -setup { entry .e -font {Courier -12} -borderwidth 2 -highlightthickness 2 pack .e ; update idletasks |