summaryrefslogtreecommitdiffstats
path: root/tests/httpd
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2011-09-16 08:28:02 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2011-09-16 08:28:02 (GMT)
commitb70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba (patch)
treee9d9531b410872bc585652d409b21187b47b6198 /tests/httpd
parentc6e44af1862f2818ef3586bf70986d7f75c5ae77 (diff)
downloadtcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.zip
tcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.tar.gz
tcl-b70ab023a4e2ec3bfb8ebccf59b92519d5a5dbba.tar.bz2
[Bug 3391977]: Ensure that the -headers option to http::geturl overrides the
-type option (important because -type has a default that is not always appropriate, and the header must not be duplicated).
Diffstat (limited to 'tests/httpd')
-rw-r--r--tests/httpd8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/httpd b/tests/httpd
index 5272385..f810797 100644
--- a/tests/httpd
+++ b/tests/httpd
@@ -175,6 +175,14 @@ proc httpdRespond { sock } {
set html "Got [string length $data(query)] bytes"
set type text/plain
}
+ *headers* {
+ set html ""
+ set type text/plain
+ foreach {key value} $data(meta) {
+ append html [list $key $value] "\n"
+ }
+ set html [string trim $html]
+ }
default {
set type text/html