summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-06-02 08:31:12 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-06-02 08:31:12 (GMT)
commitd09859e0c78d355a3c387226452360ef19a20369 (patch)
tree3a4b2d99ce84231471ac07561e45dd0023294788 /tests
parent44720928401709bc3af20910b12e56431c7c064c (diff)
parent5ad56f498e969ec873ccc117e34cebf114e13f59 (diff)
downloadtk-d09859e0c78d355a3c387226452360ef19a20369.zip
tk-d09859e0c78d355a3c387226452360ef19a20369.tar.gz
tk-d09859e0c78d355a3c387226452360ef19a20369.tar.bz2
Merge 8.7
Diffstat (limited to 'tests')
-rw-r--r--tests/tk.test5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/tk.test b/tests/tk.test
index f424c77..a42008f 100644
--- a/tests/tk.test
+++ b/tests/tk.test
@@ -11,7 +11,6 @@ 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
@@ -155,12 +154,12 @@ 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} -constraints failsOnXQuarz -body {
+test tk-6.5 {tk inactive} -body {
tk inactive reset
update
after 100
set i [tk inactive]
- expr {$i < 0 || ( $i > 90 && $i < 200 )}
+ expr {$i < 0 || ( $i > 90 && $i < 300 )}
} -result 1
test tk-7.1 {tk inactive in a safe interpreter} -body {