diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-16 14:56:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-16 14:56:22 (GMT) |
commit | 3b548f2bfeae303be4f7d27af4c14707d25fef81 (patch) | |
tree | 77d463f6197052f3b3f15c2c67e756f03868702f /tests/tk.test | |
parent | 7dcc8131f3a23e47eb29322fd7c9ef2c691b925c (diff) | |
parent | 311812328b789a5546a79cbb62a73ce5e3a83c82 (diff) | |
download | tk-3b548f2bfeae303be4f7d27af4c14707d25fef81.zip tk-3b548f2bfeae303be4f7d27af4c14707d25fef81.tar.gz tk-3b548f2bfeae303be4f7d27af4c14707d25fef81.tar.bz2 |
Merge 8.7
Diffstat (limited to 'tests/tk.test')
-rw-r--r-- | tests/tk.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tk.test b/tests/tk.test index 6a9d1e9..f424c77 100644 --- a/tests/tk.test +++ b/tests/tk.test @@ -11,6 +11,7 @@ tcltest::loadTestedCommands namespace import -force tcltest::test testConstraint testprintf [llength [info command testprintf]] +testConstraint failsOnXQuarz [expr {$tcl_platform(os) ne "Darwin" || [tk windowingsystem] ne "x11" }] test tk-1.1 {tk command: general} -body { tk @@ -154,7 +155,7 @@ test tk-6.3 {tk inactive wrong argument} -body { test tk-6.4 {tk inactive too many arguments} -body { tk inactive reset foo } -returnCodes 1 -result {wrong # args: should be "tk inactive ?-displayof window? ?reset?"} -test tk-6.5 {tk inactive} -body { +test tk-6.5 {tk inactive} -constraints failsOnXQuarz -body { tk inactive reset update after 100 |