summaryrefslogtreecommitdiffstats
path: root/tests/chanio.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-02 13:05:12 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-09-02 13:05:12 (GMT)
commitebff38e9650909e43dff4244867212e6c4133a0e (patch)
tree3394084f16f287317974277f09f49375c8a5691a /tests/chanio.test
parent4cdb0426f4766ad093409f1bef7d84d6a671c9de (diff)
parentd85664964af316638cdc58447d33bc4b0ecd2366 (diff)
downloadtcl-ebff38e9650909e43dff4244867212e6c4133a0e.zip
tcl-ebff38e9650909e43dff4244867212e6c4133a0e.tar.gz
tcl-ebff38e9650909e43dff4244867212e6c4133a0e.tar.bz2
Merge 8.6
Diffstat (limited to 'tests/chanio.test')
-rw-r--r--tests/chanio.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/chanio.test b/tests/chanio.test
index 4e6fcc1..820fd8a 100644
--- a/tests/chanio.test
+++ b/tests/chanio.test
@@ -43,6 +43,7 @@ namespace eval ::tcl::test::io {
testConstraint testmainthread [llength [info commands testmainthread]]
testConstraint testservicemode [llength [info commands testservicemode]]
testConstraint knownMsvcBug [expr {![info exists ::env(TRAVIS_OS_NAME)] || ![string match windows $::env(TRAVIS_OS_NAME)]}]
+ testConstraint notOSX [expr {$::tcl_platform(os) ne "Darwin"}]
# You need a *very* special environment to do some tests. In particular,
# many file systems do not support large-files...
@@ -5720,7 +5721,7 @@ test chan-io-45.3 {DeleteFileEvent, cleanup on chan close} {fileevent} {
# Execute these tests only if the "testfevent" command is present.
-test chan-io-46.1 {Tcl event loop vs multiple interpreters} {testfevent fileevent} {
+test chan-io-46.1 {Tcl event loop vs multiple interpreters} {testfevent fileevent notOSX} {
testfevent create
set script "set f \[[list open $path(foo) r]]\n"
append script {
@@ -6478,7 +6479,7 @@ test chan-io-50.5 {testing handler deletion vs reentrant calls} -setup {
set f [open $path(test1) w]
chan close $f
update
-} -constraints {testchannelevent testservicemode} -body {
+} -constraints {testchannelevent testservicemode notOSX} -body {
proc notcalled {f} {
variable z
lappend z "notcalled was called!! $f"