summaryrefslogtreecommitdiffstats
path: root/tests/httpold.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-08-04 13:18:37 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-08-04 13:18:37 (GMT)
commit971fc449a93e13a1430276f81349356c6b8faaa6 (patch)
treed52a7830919499913481b17dd00e31e2c9e2baf9 /tests/httpold.test
parent8db6f4075215c8964c606217dd98508ddca8b389 (diff)
parentc5d2a041f09785727fad67a457ca2b28aecefe82 (diff)
downloadtcl-971fc449a93e13a1430276f81349356c6b8faaa6.zip
tcl-971fc449a93e13a1430276f81349356c6b8faaa6.tar.gz
tcl-971fc449a93e13a1430276f81349356c6b8faaa6.tar.bz2
merge 8.6
Diffstat (limited to 'tests/httpold.test')
-rw-r--r--tests/httpold.test17
1 files changed, 12 insertions, 5 deletions
diff --git a/tests/httpold.test b/tests/httpold.test
index ab26613..dda0189 100644
--- a/tests/httpold.test
+++ b/tests/httpold.test
@@ -34,6 +34,13 @@ if {[catch {package require http 1.0}]} {
}
}
+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]
+}
+
set bindata "This is binary data\x0d\x0amore\x0dmore\x0amore\x00null"
catch {unset data}
@@ -85,7 +92,7 @@ test httpold-3.2 {http_get} {
set err
} {Unsupported URL: http:junk}
-set url [info hostname]:$port
+set url ${::HOST}:$port
test httpold-3.3 {http_get} {
set token [http_get $url]
http_data $token
@@ -95,8 +102,8 @@ test httpold-3.3 {http_get} {
</body></html>"
set tail /a/b/c
-set url [info hostname]:$port/a/b/c
-set binurl [info hostname]:$port/binary
+set url ${::HOST}:$port/a/b/c
+set binurl ${::HOST}:$port/binary
test httpold-3.4 {http_get} {
set token [http_get $url]
@@ -108,7 +115,7 @@ test httpold-3.4 {http_get} {
proc selfproxy {host} {
global port
- return [list [info hostname] $port]
+ return [list ${::HOST} $port]
}
test httpold-3.5 {http_get} {
http_config -proxyfilter selfproxy
@@ -273,7 +280,7 @@ test httpold-5.3 {http_formatQuery} {
test httpold-6.1 {httpProxyRequired} {
update
- http_config -proxyhost [info hostname] -proxyport $port
+ http_config -proxyhost ${::HOST} -proxyport $port
set token [http_get $url]
http_wait $token
http_config -proxyhost {} -proxyport {}