summaryrefslogtreecommitdiffstats
path: root/tests/httpd
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2017-08-02 23:38:20 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2017-08-02 23:38:20 (GMT)
commit07fa017898edeacecf2cf454f053948cc7263d0d (patch)
tree0822f642913e12bc9fec3d1717a1f39a48fa8f03 /tests/httpd
parent214c9c44a4c822148d4815f89a7657b5354ab9d3 (diff)
downloadtcl-07fa017898edeacecf2cf454f053948cc7263d0d.zip
tcl-07fa017898edeacecf2cf454f053948cc7263d0d.tar.gz
tcl-07fa017898edeacecf2cf454f053948cc7263d0d.tar.bz2
Fix weird hangs in macOS Sierra on some networks. Name resolution timeouts not what we want to test in the http package.
Diffstat (limited to 'tests/httpd')
-rw-r--r--tests/httpd9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/httpd b/tests/httpd
index 8753912..16e0382 100644
--- a/tests/httpd
+++ b/tests/httpd
@@ -10,6 +10,13 @@
#set httpLog 1
+if {$::tcl_platform(os) eq "Darwin"} {
+ # Name resolution often a problem on OSX; not focus of HTTP package anyway
+ set HOST localhost
+} else {
+ set HOST [info hostname]
+}
+
proc httpd_init {{port 8015}} {
socket -server httpdAccept $port
}
@@ -168,7 +175,7 @@ proc httpdRespond { sock } {
switch -glob -- $data(url) {
*binary* {
- set html "$bindata[info hostname]:$port$data(url)"
+ set html "$bindata${::HOST}:$port$data(url)"
set type application/octet-stream
}
*xml* {