Skip to content

Commit

Permalink
Temporary disable building on MacOS with --disable-aqua: This is not …
Browse files Browse the repository at this point in the history
…a Tk problem, but a known [https://github.com/XQuartz/XQuartz/issues/216|XQuartz] problem.
  • Loading branch information
jan.nijtmans committed Jul 2, 2024
2 parents 0701f0c + 875543b commit 608cd4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- 'mem'
options:
- '--enable-aqua'
- '--disable-aqua'
# - '--disable-aqua'
defaults:
run:
shell: bash
Expand Down
4 changes: 3 additions & 1 deletion tests/entry.test
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 608cd4a

Please sign in to comment.