diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-14 12:25:38 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-14 12:25:38 (GMT) |
commit | b3e4fc2a04cb66d7fb0e7e2acd6c078f7489364b (patch) | |
tree | 9d6f0a23786de578cd397e4e595b3544ccba6263 /tests/socket.test | |
parent | a22953bb77fe0c1b7c1ecaa9397dfc12cf5d0a54 (diff) | |
download | tcl-b3e4fc2a04cb66d7fb0e7e2acd6c078f7489364b.zip tcl-b3e4fc2a04cb66d7fb0e7e2acd6c078f7489364b.tar.gz tcl-b3e4fc2a04cb66d7fb0e7e2acd6c078f7489364b.tar.bz2 |
Fixed some tests, added trial macOS build
Diffstat (limited to 'tests/socket.test')
-rw-r--r-- | tests/socket.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/socket.test b/tests/socket.test index 2060f35..d5f9c94 100644 --- a/tests/socket.test +++ b/tests/socket.test @@ -67,7 +67,9 @@ if {"::tcltest" ni [namespace children]} { ::tcltest::loadTestedCommands -if {[info exists ::env(TRAVIS_OSX_IMAGE)] && [string match xcode* $::env(TRAVIS_OSX_IMAGE)]} { +# A bad interaction between socket creation, macOS, and unattended CI +# environments make this whole file impractical to run; too many weird hangs. +if {[info exists ::env(MAC_CI)]} { return } |