summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2001-05-21 22:31:00 (GMT)
committerhobbs <hobbs@noemail.net>2001-05-21 22:31:00 (GMT)
commit8c81b912e04f41fdecd223f0e1f749aabfcf5a55 (patch)
tree27e80d0ad147b35bc6242ca15c786b01ebc0cfdc
parent790ef1c3f8846dbe86884d6752f66cb7dabd1b63 (diff)
downloadtcl-8c81b912e04f41fdecd223f0e1f749aabfcf5a55.zip
tcl-8c81b912e04f41fdecd223f0e1f749aabfcf5a55.tar.gz
tcl-8c81b912e04f41fdecd223f0e1f749aabfcf5a55.tar.bz2
* tests/httpd (httpdRespond): added response to timeout value in
query string. FossilOrigin-Name: a43a7c465732a209a43718e2f9b3a7d4608a7e3c
-rw-r--r--tests/httpd3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/httpd b/tests/httpd
index e5fa282..fa553d6 100644
--- a/tests/httpd
+++ b/tests/httpd
@@ -183,6 +183,9 @@ proc httpdRespond { sock } {
append html "<h2>Query</h2>\n<dl>\n"
foreach {key value} [split $data(query) &=] {
append html "<dt>$key<dd>$value\n"
+ if {$key == "timeout"} {
+ after $value ;# pause
+ }
}
append html </dl>\n
}