diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-07-02 08:49:17 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-07-02 08:49:17 (GMT) |
commit | 608cd4ab0b34ab5a5af62861bef6bda6e5ebd2a2 (patch) | |
tree | 1ee3babdf0643a9d060ade1916bd17ef7c8ef49f /tests | |
parent | 0701f0c62829b1f7ed55046912f630acc1a8c436 (diff) | |
parent | 875543b761fc2bf80c6e0a6ee7fc28a0899513ff (diff) | |
download | tk-608cd4ab0b34ab5a5af62861bef6bda6e5ebd2a2.zip tk-608cd4ab0b34ab5a5af62861bef6bda6e5ebd2a2.tar.gz tk-608cd4ab0b34ab5a5af62861bef6bda6e5ebd2a2.tar.bz2 |
Temporary disable building on MacOS with --disable-aqua: This is not a Tk problem, but a known [https://github.com/XQuartz/XQuartz/issues/216|XQuartz] problem.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/entry.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/entry.test b/tests/entry.test index 1454104..30f19b4 100644 --- a/tests/entry.test +++ b/tests/entry.test @@ -11,6 +11,8 @@ namespace import ::tcltest::* eval tcltest::configure $argv tcltest::loadTestedCommands +testConstraint failsOnXQuarz [expr {$tcl_platform(os) ne "Darwin" || [tk windowingsystem] ne "x11" }] + # For xscrollcommand set scrollInfo {} proc scroll args { @@ -891,7 +893,7 @@ test entry-3.23 {EntryWidgetCmd procedure, "delete" widget command} -setup { } -cleanup { destroy .e } -result 0123457890 -test entry-3.24 {EntryWidgetCmd procedure, "delete" widget command} -setup { +test entry-3.24 {EntryWidgetCmd procedure, "delete" widget command} -constraints failsOnXQuarz -setup { entry .e pack .e ; update idletasks update |